Module.GetField 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정한 필드를 반환합니다.
오버로드
GetField(String) |
지정된 이름을 갖는 필드를 반환합니다. |
GetField(String, BindingFlags) |
지정된 이름 및 바인딩 특성을 갖는 필드를 반환합니다. |
GetField(String)
- Source:
- Module.cs
- Source:
- Module.cs
- Source:
- Module.cs
지정된 이름을 갖는 필드를 반환합니다.
public:
System::Reflection::FieldInfo ^ GetField(System::String ^ name);
public System.Reflection.FieldInfo? GetField (string name);
public System.Reflection.FieldInfo GetField (string name);
member this.GetField : string -> System.Reflection.FieldInfo
Public Function GetField (name As String) As FieldInfo
매개 변수
- name
- String
필드 이름입니다.
반환
지정된 이름을 갖는 FieldInfo
개체이거나 필드가 없는 경우 null
입니다.
예외
name
매개 변수가 null
인 경우
적용 대상
GetField(String, BindingFlags)
- Source:
- Module.cs
- Source:
- Module.cs
- Source:
- Module.cs
지정된 이름 및 바인딩 특성을 갖는 필드를 반환합니다.
public:
virtual System::Reflection::FieldInfo ^ GetField(System::String ^ name, System::Reflection::BindingFlags bindingAttr);
public:
System::Reflection::FieldInfo ^ GetField(System::String ^ name, System::Reflection::BindingFlags bindingAttr);
public virtual System.Reflection.FieldInfo? GetField (string name, System.Reflection.BindingFlags bindingAttr);
public virtual System.Reflection.FieldInfo GetField (string name, System.Reflection.BindingFlags bindingAttr);
public System.Reflection.FieldInfo GetField (string name, System.Reflection.BindingFlags bindingAttr);
abstract member GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
override this.GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
member this.GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
Public Overridable Function GetField (name As String, bindingAttr As BindingFlags) As FieldInfo
Public Function GetField (name As String, bindingAttr As BindingFlags) As FieldInfo
매개 변수
- name
- String
필드 이름입니다.
- bindingAttr
- BindingFlags
검색을 제어하는 데 사용되는 BindingFlags
비트 플래그 중 하나입니다.
반환
지정된 이름을 갖는 FieldInfo
개체이거나 필드가 없는 경우 null
입니다.
예외
name
매개 변수가 null
인 경우
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET