Start() 공개 메소드

public Start ( ) : void
리턴 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();
        }