Mono.CSharp.VariableInfo.GetStructFieldInfo C# (CSharp) 메소드

GetStructFieldInfo() 공개 메소드

public GetStructFieldInfo ( string fieldName ) : VariableInfo
fieldName string
리턴 VariableInfo
		public VariableInfo GetStructFieldInfo (string fieldName)
		{
			TypeInfo type = TypeInfo.GetStructField (fieldName);

			if (type == null)
				return null;

			return new VariableInfo (this, type);
		}