TempClient.cpp
上传用户:sz0451
上传日期:2022-07-29
资源大小:256k
文件大小:1k
源码类别:

.net编程

开发平台:

Visual C++

  1. // This is the main project file for VC++ application project 
  2. // generated using an Application Wizard.
  3. #include "stdafx.h"
  4. #include "WebService.h"
  5. #using <mscorlib.dll>
  6. using namespace System;
  7. // This is the entry point for this application
  8. #ifdef _UNICODE
  9. int wmain(void)
  10. #else
  11. int main(void)
  12. #endif
  13. {
  14.     Console::WriteLine(S"Web Service Test");
  15.     try
  16.     {
  17.         // Create a proxy object
  18.         TemperatureConverter* conv = new TemperatureConverter();
  19.         // Call a conversion method
  20.         double fahrVal = conv->ConvertC2F(10.0);
  21.         Console::WriteLine("10C is {0}F", __box(fahrVal));
  22.     }
  23.     catch(Exception* pe)
  24.     {
  25.         Console::WriteLine(pe->Message);
  26.     }
  27.     return 0;
  28. }