英語で読む

次の方法で共有


コンパイラ エラー CS1517

無効なプリプロセッサの式です。

無効なプリプロセッサの式が見つかりました。

詳細については、「 C# プリプロセッサ ディレクティブ」を参照してください。

有効なプリプロセッサの式および無効なプリプロセッサ式のを次の例に示します。

// CS1517.cs  
#if symbol      // OK  
#endif  
#if !symbol     // OK  
#endif  
#if (symbol)    // OK  
#endif  
#if true        // OK  
#endif  
#if false       // OK  
#endif  
#if 1           // CS1517  
#endif  
#if ~symbol     // CS1517  
#endif  
#if *           // CS1517  
#endif  
  
class x  
{  
   public static void Main()  
   {  
   }  
}