MethodImplAttribute 생성자

정의

MethodImplAttribute 클래스의 새 인스턴스를 초기화합니다.

오버로드

Name Description
MethodImplAttribute()

MethodImplAttribute 클래스의 새 인스턴스를 초기화합니다.

MethodImplAttribute(Int16)

지정된 MethodImplAttribute 값을 사용하여 클래스의 MethodImplOptions 새 인스턴스를 초기화합니다.

MethodImplAttribute(MethodImplOptions)

지정된 MethodImplAttribute 값을 사용하여 클래스의 MethodImplOptions 새 인스턴스를 초기화합니다.

MethodImplAttribute()

Source:
MethodImplAttribute.cs
Source:
MethodImplAttribute.cs
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
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
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 비트 필드를 설정합니다. 이러한 플래그의 값은 런타임에 또는 MethodInfo.GetMethodImplementationFlags 메서드를 ConstructorInfo.GetMethodImplementationFlags 호출하여 검색할 수 있습니다.

추가 정보

적용 대상