Visual C++ .NET/Data Type/short

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

Intializing using Functional Notation for short type

 
#include "stdafx.h"
using namespace System;
void main()
{
  short   w(123);                 
  Console::WriteLine( w ); 
}