Type.IsAnsiClass 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
AnsiClass
에 대해 문자열 형식 특성 Type가 선택되었는지 여부를 나타내는 값을 가져옵니다.
public:
property bool IsAnsiClass { bool get(); };
public bool IsAnsiClass { get; }
member this.IsAnsiClass : bool
Public ReadOnly Property IsAnsiClass As Boolean
속성 값
true
에 대해 문자열 형식 특성 AnsiClass
가 선택되면 Type이고, 그렇지 않으면 false
입니다.
구현
예제
다음 예제에서는 필드 정보를 가져오고 특성을 확인 AnsiClass
합니다.
using namespace System;
using namespace System::Reflection;
public ref class MyClass
{
protected:
String^ myField;
public:
MyClass()
{
myField = "A sample protected field";
}
};
int main()
{
try
{
MyClass^ myObject = gcnew MyClass;
// Get the type of the 'MyClass'.
Type^ myType = MyClass::typeid;
// Get the field information and the attributes associated with MyClass.
FieldInfo^ myFieldInfo = myType->GetField( "myField", static_cast<BindingFlags>(BindingFlags::NonPublic | BindingFlags::Instance) );
Console::WriteLine( "\nChecking for the AnsiClass attribute for a field.\n" );
// Get and display the name, field, and the AnsiClass attribute.
Console::WriteLine( "Name of Class: {0} \nValue of Field: {1} \nIsAnsiClass = {2}", myType->FullName, myFieldInfo->GetValue( myObject ), myType->IsAnsiClass );
}
catch ( Exception^ e )
{
Console::WriteLine( "Exception: {0}", e->Message );
}
}
using System;
using System.Reflection;
public class MyClass
{
protected string myField = "A sample protected field." ;
}
public class MyType_IsAnsiClass
{
public static void Main()
{
try
{
MyClass myObject = new MyClass();
// Get the type of the 'MyClass'.
Type myType = typeof(MyClass);
// Get the field information and the attributes associated with MyClass.
FieldInfo myFieldInfo = myType.GetField("myField", BindingFlags.NonPublic|BindingFlags.Instance);
Console.WriteLine( "\nChecking for the AnsiClass attribute for a field.\n");
// Get and display the name, field, and the AnsiClass attribute.
Console.WriteLine("Name of Class: {0} \nValue of Field: {1} \nIsAnsiClass = {2}", myType.FullName, myFieldInfo.GetValue(myObject), myType.IsAnsiClass);
}
catch(Exception e)
{
Console.WriteLine("Exception: {0}",e.Message);
}
}
}
open System.Reflection
type MyClass() =
let myField = "A sample private field."
try
let myObject = MyClass()
// Get the type of the 'MyClass'.
let myType = typeof<MyClass>
// Get the field information and the attributes associated with MyClass.
let myFieldInfo = myType.GetField("myField", BindingFlags.NonPublic ||| BindingFlags.Instance)
printfn "\nChecking for the AnsiClass attribute for a field.\n"
// Get and display the name, field, and the AnsiClass attribute.
printfn $"Name of Class: {myType.FullName} \nValue of Field: {myFieldInfo.GetValue myObject} \nIsAnsiClass = {myType.IsAnsiClass}"
with e ->
printfn $"Exception: {e.Message}"
Imports System.Reflection
Public Class MyClass1
Protected myField As String = "A sample protected field."
End Class
Public Class MyType_IsAnsiClass
Public Shared Sub Main()
Try
Dim myObject As New MyClass1()
' Get the type of MyClass1.
Dim myType As Type = GetType(MyClass1)
' Get the field information and the attributes associated with MyClass1.
Dim myFieldInfo As FieldInfo = myType.GetField("myField", BindingFlags.NonPublic Or BindingFlags.Instance)
Console.WriteLine(ControlChars.NewLine + "Checking for AnsiClass attribute for a field." + ControlChars.NewLine)
' Get and display the name, field, and the AnsiClass attribute.
Console.WriteLine("Name of Class: {0} " + ControlChars.NewLine + "Value of Field: {1} " + ControlChars.NewLine + "IsAnsiClass = {2}", myType.FullName, myFieldInfo.GetValue(myObject), myType.IsAnsiClass)
Catch e As Exception
Console.WriteLine("Exception: {0}", e.Message.ToString())
End Try
End Sub
End Class
설명
는 StringFormatMask 문자열 형식 특성을 선택합니다. 문자열 형식 특성은 문자열을 해석하는 방법을 정의하여 상호 운용성을 향상시킵니다.
현재 Type 가 제네릭 형식을 나타내는 경우 이 속성은 형식이 생성된 제네릭 형식 정의와 관련이 있습니다. 예를 들어 현재 Type 가 (Visual Basic의 경우)MyGenericType(Of Integer)
를 나타내는 MyGenericType<int>
경우 이 속성의 값은 에 의해 MyGenericType<T>
결정됩니다.
현재 Type 가 제네릭 형식의 형식 매개 변수를 나타내는 경우 이 속성은 항상 를 반환합니다 false
.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET