Beispiel #1
0
 /// <summary>
 /// Converts CKG to UInt64
 /// </summary>
 /// <param name="value">CKG that should be converted</param>
 /// <returns>UInt64 with value from CKG</returns>
 public static UInt64 UInt64FromCKG(CKG value)
 {
     return(Convert.ToUInt64(value));
 }
Beispiel #2
0
 /// <summary>
 /// Converts CKG to NativeULong
 /// </summary>
 /// <param name="value">CKG that should be converted</param>
 /// <returns>NativeULong with value from CKG</returns>
 public static NativeULong ConvertFromCKG(CKG value)
 {
     return(Convert.ToUInt64(value));
 }
Beispiel #3
0
 /// <summary>
 /// Converts CKG to UInt32
 /// </summary>
 /// <param name="value">CKG that should be converted</param>
 /// <returns>UInt32 with value from CKG</returns>
 public static UInt32 UInt32FromCKG(CKG value)
 {
     return(Convert.ToUInt32(value));
 }