Share via


컴파일러 오류 CS0647

업데이트: 2007년 11월

오류 메시지

'attribute' 특성을 내보내는 동안 오류가 발생했습니다. - 'reason'
Error emitting 'attribute' attribute -- 'reason'

다음 샘플에서는 CS0647 오류가 발생하는 경우를 보여 줍니다.

// 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()
   {
   }
}