英語で読む

次の方法で共有


コンパイラ エラー CS0647

'attribute' 属性を作成時にエラーが発生しました -- 'reason'

次の例では CS0647 が生成されます。

C#
// CS0647.cs  
using System.Runtime.InteropServices;  
  
[Guid("z")]   // CS0647, incorrect uuid format.  
// try the following line instead  
// [Guid("00000000-0000-0000-0000-000000000001")]  
public class MyClass  
{  
   public static void Main()  
   {  
   }  
}