Mono.GetOptions.OptionList.GetAssemblyAttributeValue C# (CSharp) Method

GetAssemblyAttributeValue() private method

private GetAssemblyAttributeValue ( Type type, string &var ) : void
type System.Type
var string
return void
		private void GetAssemblyAttributeValue(Type type, ref string var)
		{
			object[] result = GetAssemblyAttributes(type);

			if ((result != null) && (result.Length > 0))
				var = result[0].ToString();
		}

Same methods

OptionList::GetAssemblyAttributeValue ( Type type, string propertyName, string &var ) : void