Beispiel #1
0
 /// <summary>
 /// Multiplies the value by 10^12 (one trillion)
 /// </summary>
 /// <param name="value">The value.</param>
 /// <returns></returns>
 /// <gist id="1061db9b00620852af88" />
 public static decimal T(this decimal value)
 {
     return(value.B() * 1000L);
 }