/// <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); }
public PrintBanner( string str ) { Banner tmpBanner = new Banner( str ); PrintWeak = tmpBanner.ShowWithParen; PrintStrong = tmpBanner.ShowWithAster; }