예제 #1
0
파일: Program.cs 프로젝트: pawelc222/ksr
 static void Main(string[] args)
 {
     ServiceReference1.Service1SoapClient client = new ServiceReference1.Service1SoapClient();
     Console.WriteLine(client.HelloWorld());
 }
예제 #2
0
파일: Form1.cs 프로젝트: cehars/pro-lang
        private void button1_Click(object sender, EventArgs e)
        {
            ServiceReference1.Service1SoapClient service = new ServiceReference1.Service1SoapClient();

            MessageBox.Show(service.HelloWorld());
        }