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

ChangeGenericType() public static method

Converts the specified value to the specified generic type.
public static ChangeGenericType ( Object value, Type conversionType ) : Object
value Object The value to convert.
conversionType System.Type A System.Type to convert to.
return Object
		public static Object ChangeGenericType(Object value, Type conversionType)
		{
			return ChangeGenericType(value, conversionType, true);
		}

Same methods

EntityUtil::ChangeGenericType ( Object value, Type conversionType, bool convertBlankToNull ) : Object