コード例 #1
0
 public override Task <TwitterStatus> Send(TwitterAccount account)
 {
     return(this._type == StatusType.Tweet
                ? account.DestroyAsync(this._id)
                : account.DestroyDirectMessageAsync(this._id));
 }