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);
		}