Esempio n. 1
0
 /// <summary>
 /// Unary ampersand operator returns the address of its operand. Binary ampersand operators are
 /// predefined for the integral types and <see cref="bool"/>.
 /// </summary>
 /// <param name="x">Left hand side of the operand.</param>
 /// <param name="y">Right hand side of the operand.</param>
 /// <returns>
 /// Returns the <see cref="int"/> value of the operations.
 /// </returns>
 public object Invoke(object x, object y) => Numbers.And(x, y);