Csharp/CSharp Tutorial/Preprocessing Directives/warning — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 15:31, 26 мая 2010
Unused Warning With Warning Suppressed
using System;
using System.Collections.Generic;
using System.Text;
using System.ruponentModel;
class UnusedWarningWithWarningSuppressed
{
#pragma warning disable 0169
int x;
#pragma warning restore 0169
}
warning preprocessor
The #warning directive produces a warning.
The general form of the #warning directive is
#warning warning-message