Nettiers.AdventureWorks.Entities.EntityUtil.GetStaticPropertyValue C# (CSharp) Method

GetStaticPropertyValue() public static method

Gets the value of the static property with the specified name.
public static GetStaticPropertyValue ( Type type, String propertyName ) : Object
type System.Type The runtime type.
propertyName String The property name.
return Object
		public static Object GetStaticPropertyValue(Type type, String propertyName)
		{
			PropertyInfo property = null;
			return GetStaticPropertyValue(type, propertyName, out property);
		}

Same methods

EntityUtil::GetStaticPropertyValue ( Type type, String propertyName, PropertyInfo &property ) : Object