This code actually works. Problem was that i originally used StartStreamMatchingAllConditions and should be StartStreamMatchingAnyCondition for my case.
Thanks
Thanks
var stream = Stream.CreateFilteredStream();
stream.AddFollow(759251); // CNN
stream.MatchingTweetReceived += (sender, args) =>
{
var tweet = args.Tweet;
/// to do something
};
stream.StartStreamMatchingAnyCondition();