/// <summary>
 /// コンストラクタ
 /// </summary>
 /// <param name="str">文字列</param>
 public PrintBanner_delegate(string str)
 {
     this.banner = new Banner(str);
 }
 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;
 }