StringCollection.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. #using <System.dll>
  6. using namespace System;
  7. using namespace System::Collections::Specialized;
  8. // This is the entry point for this application
  9. #ifdef _UNICODE
  10. int wmain(void)
  11. #else
  12. int main(void)
  13. #endif
  14. {
  15.     StringCollection* psc = new StringCollection();
  16.     psc->Add(new String("Rhyl"));
  17.     psc->Add(new String("Prestatyn"));
  18.     psc->Add(new String("Abersoch"));
  19.     psc->Add(new String("Nefyn"));
  20.     int arr1 __gc[] = new int __gc[10];
  21.     for (int i=0; i<arr1->Count; i++)
  22.     {
  23.         arr1[i] = i * i;
  24.         Console::WriteLine(arr1[i]);
  25.     }
  26.     return 0;
  27. }