Visual C++ .NET/Data Type/short

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

Intializing using Functional Notation for short type

<source lang="csharp">

  1. include "stdafx.h"

using namespace System; void main() {

 short   w(123);                 
 Console::WriteLine( w ); 

}

 </source>