Exemple #1
0
 /// <summary>
 /// Implements the unary `!` operator.
 /// </summary>
 public static bool not(BoxedValue value)
 {
     return(!TypeConverter.ToBoolean(value));
 }