Start() public method

public Start ( ) : void
return void
コード例 #1
0
ファイル: Program.cs プロジェクト: jgn-epp/Skole
        static void Main( string[] args )
        {
            IShoutable shouter = new Shouter();

              Skeleton skeleton = new Skeleton( 6010, shouter );
              skeleton.Start();
        }
コード例 #2
0
        static void Main(string[] args)
        {
            Skeleton skeleton = new Skeleton();

            skeleton.Start();

            Client.Client client = new Client.Client(new Stub());
            client.Execute();
        }