コード例 #1
0
ファイル: TwittData.cs プロジェクト: bnayae/SDP-2015
 public TwittData(
     Profile data,
     Profile sender = null)
     : base(data.Name, data.ImageUrl)
 {
     Sender = sender;
 }
コード例 #2
0
ファイル: ProfileRate.cs プロジェクト: bnayae/SDP-2015
 public ProfileRate(Profile profile, int count)
     : base(profile.Name, profile.ImageUrl)
 {
     Count = count;
 }