TypeBuilder.DefineInitializedData(String, Byte[], FieldAttributes) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
PE(이식 가능) 파일의 .sdata 섹션에서 초기화되지 않은 데이터 필드를 정의합니다.
public:
System::Reflection::Emit::FieldBuilder ^ DefineInitializedData(System::String ^ name, cli::array <System::Byte> ^ data, System::Reflection::FieldAttributes attributes);
public System.Reflection.Emit.FieldBuilder DefineInitializedData (string name, byte[] data, System.Reflection.FieldAttributes attributes);
member this.DefineInitializedData : string * byte[] * System.Reflection.FieldAttributes -> System.Reflection.Emit.FieldBuilder
Public Function DefineInitializedData (name As String, data As Byte(), attributes As FieldAttributes) As FieldBuilder
매개 변수
- name
- String
데이터를 참조하는 데 사용되는 이름입니다.
name
에는 내장된 null이 포함될 수 없습니다.
- data
- Byte[]
데이터의 BLOB입니다.
- attributes
- FieldAttributes
필드에 대한 특성입니다.
반환
데이터를 참조할 필드입니다.
예외
name
또는 data
가 null
인 경우
CreateType()이 이전에 호출되었습니다.
설명
매개 변수에 를 포함하지 FieldAttributes.Static
않더라도 이 메서드static
를 사용하여 만드는 필드는 입니다attributes
.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET