AODL.Document.Helper.SizeConverter.IsInch C# (CSharp) Method

IsInch() public static method

Determines whether the specified value is in inch.
public static IsInch ( string value ) : bool
value string The value.
return bool
		public static bool IsInch(string value)
		{
			if (value != null)
				return value.ToLower().EndsWith("in");
			return false;
		}