Common Class
Defines common global functions.
Namespace: GemstoneAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.150 -- Release Build+64e3b411e1abfbd2d4d8a81e850c3909a0ce8731
public static class Common
Public NotInheritable Class Common
public ref class Common abstract sealed
Gemstone.Common = function();
Type.createClass(
'Gemstone.Common');
- Inheritance
- Object Common
| GetAvailablePhysicalMemory |
Gets the available physical system memory.
|
| GetOSPlatformID |
Gets the operating system PlatformID Obsolete. |
| GetOSProductName |
Gets the operating system product name.
Obsolete. |
| GetTotalPhysicalMemory |
Gets the total physical system memory.
|
| IsDefaultValue | Determines if given item is equal to its default value (e.g., null or 0.0). |
| IsNonStringReference | Determines if given item is a reference type but not a string. |
| IsNumeric |
Determines if given item is or can be interpreted as numeric.
|
| IsNumericType(Object) |
Determines if Type of item is a numeric type, i.e., item
is IConvertible and has a TypeCode that is one of:
Boolean, SByte, Byte,
Int16, UInt16, Int32,
UInt32, Int64, UInt64Single, Double or Decimal.
|
| IsNumericType(Type) |
Determines if type is a numeric type, i.e., has a TypeCode that is one of:
Boolean, SByte, Byte,
Int16, UInt16, Int32,
UInt32, Int64, UInt64Single, Double or Decimal.
|
| IsNumericType(TypeCode) |
Determines if typeCode is a numeric type, i.e., one of:
Boolean, SByte, Byte,
Int16, UInt16, Int32,
UInt32, Int64, UInt64Single, Double or Decimal.
|
| IsNumericTypeT |
Determines if T is a numeric type, i.e., has a TypeCode that is one of:
Boolean, SByte, Byte,
Int16, UInt16, Int32,
UInt32, Int64, UInt64Single, Double or Decimal.
|
| IsReference | Determines if given item is a reference type. |
| MaxT | Returns the largest item from a list of parameters. |
| MidT | Returns the value that is neither the largest nor the smallest. |
| MinT | Returns the smallest item from a list of parameters. |
| TypeConvertFromString(String, Type) |
Converts this string into the specified type.
|
| TypeConvertFromString(String, Type, CultureInfo, Boolean) |
Converts this string into the specified type.
|
| TypeConvertToString(Object) |
Converts value to a String using an appropriate TypeConverter.
|
| TypeConvertToString(Object, CultureInfo, Boolean) |
Converts value to a String using an appropriate TypeConverter.
|