Visual C++ .NET/Language Basics/nullptl

Материал из .Net Framework эксперт
Версия от 12:06, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

If it is a nullptl

 
#include "stdafx.h"
using namespace System;
int main()
{
   String^ str;
   while ((str = Console::ReadLine()) != nullptr)
   {
      Console::WriteLine( str->ToUpper() );
   }
}