Type.EmptyTypes 필드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Type 형식의 빈 배열을 나타냅니다. 이 필드는 읽기 전용입니다.
public: static initonly cli::array <Type ^> ^ EmptyTypes;
public static readonly Type[] EmptyTypes;
staticval mutable EmptyTypes : Type[]
Public Shared ReadOnly EmptyTypes As Type()
필드 값
- Type[]
예제
다음 코드 예제에서는 EmptyTypes
GetConstructor
매개 변수를 사용 하지 않는 생성자를 가져오기 위해 메서드 중 하나에서 사용 되는 필드를 보여 줍니다.
cInfo = type->GetConstructor( BindingFlags::ExactBinding, nullptr,
Type::EmptyTypes, nullptr );
cInfo = type.GetConstructor (BindingFlags.ExactBinding, null,
Type.EmptyTypes, null);
cInfo = type.GetConstructor(BindingFlags.ExactBinding, _
Nothing, Type.EmptyTypes, Nothing)