BoxKite.Twitter.Models.TweetExtensions.IsARetweet C# (CSharp) Méthode

IsARetweet() public static méthode

public static IsARetweet ( this tweet ) : bool
tweet this
Résultat bool
        public static bool IsARetweet(this Tweet tweet)
        {
            return tweet.RetweetedStatus != null;
        }
    }