Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Implicit conversions you'll need to consider:</p> <ul> <li>Identity</li> <li>sbyte to short, int, long, float, double, or decimal</li> <li>byte to short, ushort, int, uint, long, ulong, float, double, or decimal</li> <li>short to int, long, float, double, or decimal</li> <li>ushort to int, uint, long, ulong, float, double, or decimal</li> <li>int to long, float, double, or decimal</li> <li>uint to long, ulong, float, double, or decimal</li> <li>long to float, double, or decimal</li> <li>ulong to float, double, or decimal</li> <li>char to ushort, int, uint, long, ulong, float, double, or decimal</li> <li>float to double</li> <li>Nullable type conversion</li> <li>Reference type to object</li> <li>Derived class to base class</li> <li>Class to implemented interface</li> <li>Interface to base interface</li> <li>Array to array when arrays have the same number of dimensions, there is an implicit conversion from the source element type to the destination element type and the source element type and the destination element type are reference types</li> <li>Array type to System.Array</li> <li>Array type to IList&lt;> and its base interfaces</li> <li>Delegate type to System.Delegate</li> <li>Boxing conversion</li> <li>Enum type to System.Enum</li> <li>User defined conversion (op_implicit)</li> </ul> <p>I assume you're looking for the latter. You'll need to write something resembling a compiler to cover all of them. Notable is that System.Linq.Expressions.Expression didn't attempt this feat.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload