コード例 #1
0
 /// <summary>
 /// コンストラクタ
 /// </summary>
 /// <param name="str">文字列</param>
 public PrintBanner_delegate(string str)
 {
     this.banner = new Banner(str);
 }
コード例 #2
0
 public PrintBannerDelegatesVer(string str)
 {
     _banner  = new Banner(str);
     _banner2 = new Banner2(str);
 }
コード例 #3
0
ファイル: PrintBanner.cs プロジェクト: ar90n/junk
 public PrintBanner( string str )
 {
     Banner tmpBanner = new Banner( str );
     PrintWeak = tmpBanner.ShowWithParen;
     PrintStrong = tmpBanner.ShowWithAster;
 }