Exemplo n.º 1
0
 /// <summary>
 /// Divides <paramref name="left"/> by <paramref name="right"/>
 /// </summary>
 /// <param name="left">The left value</param>
 /// <param name="right">The right value</param>
 /// <returns>The <see cref="Volume"/> that is the result from the division.</returns>
 public static Volume operator /(Energy left, Pressure right)
 {
     return(Volume.FromCubicMetres(left.joules / right.pascals));
 }