MethodImplAttribute 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
MethodImplAttribute 클래스의 새 인스턴스를 초기화합니다.
오버로드
MethodImplAttribute() |
MethodImplAttribute 클래스의 새 인스턴스를 초기화합니다. |
MethodImplAttribute(Int16) |
지정된 MethodImplAttribute 값을 사용하여 MethodImplOptions 클래스의 새 인스턴스를 초기화합니다. |
MethodImplAttribute(MethodImplOptions) |
지정된 MethodImplAttribute 값을 사용하여 MethodImplOptions 클래스의 새 인스턴스를 초기화합니다. |
MethodImplAttribute()
- Source:
- MethodImplAttribute.cs
- Source:
- MethodImplAttribute.cs
- Source:
- MethodImplAttribute.cs
MethodImplAttribute 클래스의 새 인스턴스를 초기화합니다.
public:
MethodImplAttribute();
public MethodImplAttribute ();
Public Sub New ()
적용 대상
MethodImplAttribute(Int16)
- Source:
- MethodImplAttribute.cs
- Source:
- MethodImplAttribute.cs
- Source:
- MethodImplAttribute.cs
지정된 MethodImplAttribute 값을 사용하여 MethodImplOptions 클래스의 새 인스턴스를 초기화합니다.
public:
MethodImplAttribute(short value);
public MethodImplAttribute (short value);
new System.Runtime.CompilerServices.MethodImplAttribute : int16 -> System.Runtime.CompilerServices.MethodImplAttribute
Public Sub New (value As Short)
매개 변수
- value
- Int16
특성 사용 메서드의 속성을 지정하는 원하는MethodImplOptions 값을 표시하는 비트 마스크입니다.
적용 대상
MethodImplAttribute(MethodImplOptions)
- Source:
- MethodImplAttribute.cs
- Source:
- MethodImplAttribute.cs
- Source:
- MethodImplAttribute.cs
지정된 MethodImplAttribute 값을 사용하여 MethodImplOptions 클래스의 새 인스턴스를 초기화합니다.
public:
MethodImplAttribute(System::Runtime::CompilerServices::MethodImplOptions methodImplOptions);
public MethodImplAttribute (System.Runtime.CompilerServices.MethodImplOptions methodImplOptions);
new System.Runtime.CompilerServices.MethodImplAttribute : System.Runtime.CompilerServices.MethodImplOptions -> System.Runtime.CompilerServices.MethodImplAttribute
Public Sub New (methodImplOptions As MethodImplOptions)
매개 변수
- methodImplOptions
- MethodImplOptions
특성 사용 메서드의 속성을 지정하는 MethodImplOptions 값입니다.
설명
이 생성자는 메타데이터 테이블의 CorMethodImpl
비트 필드를 설정합니다. 이러한 플래그의 값은 또는 ConstructorInfo.GetMethodImplementationFlags
메서드를 호출 MethodInfo.GetMethodImplementationFlags
하여 런타임에 검색할 수 있습니다.
추가 정보
적용 대상
.NET