BoxKite.Twitter.Models.TweetExtensions.IsAReply C# (CSharp) 메소드

IsAReply() 공개 정적인 메소드

public static IsAReply ( this tweet ) : bool
tweet this
리턴 bool
        public static bool IsAReply(this Tweet tweet)
        {
            return tweet.InReplyToId != null;
        }