Person.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. #using <mscorlib.dll>
  5. #include <tchar.h>
  6. using namespace System;
  7. __value struct Date
  8. {
  9. int dd,mm,yyyy;
  10. };
  11. __value struct Person
  12. {
  13. String* name;
  14.     Date DOB;
  15. };
  16. // This is the entry point for this application
  17. int _tmain(void)
  18. {
  19.     Console::WriteLine(S"Person Program...");
  20. // Create a Person
  21. Person p1;
  22. p1.name = "Fred";
  23. p1.DOB.dd = 10;
  24. p1.DOB.mm = 3;
  25. p1.DOB.yyyy = 1960;
  26.     return 0;
  27. }