I'm trying to get replies for a specific tweet.
This code helps me to get the last tweet but I can't get user's replies to this tweet.
var ctxTwitterContext = new TwitterContext(auth);
var srch = (from search in ctxTwitterContext.Search
where search.Type == SearchType.Search
&& search.Query == "to:" + "ScreenName" + " OR from:" + "ScreenName"
&& search.Count == 1
select search).SingleOrDefault();