Professional ASP.NET 1.1 [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Professional ASP.NET 1.1 [Electronic resources] - نسخه متنی

Alex Homeret

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید






C++

Since C++ already has object-oriented features, the VC++ implementation supplied with Visual Studio .NET provides support for managed code. At the minimum, you must include the following two lines at the top of your code:


#using <mscorlib.dll>

using namespace System;


These give you access to the .NET classes. You must also add the

/CLR compiler option when building the executable.

Details of working with the managed extensions for C++ are outside the scope of this book, so you should consult the documentation for more details.

/ 244