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

IsARetweet() 공개 정적인 메소드

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