public static implicit operator byte(BytesType o) { return ConvertTo<byte>(o); }
The above does an implicit conversion from object o of type BytesType
to byte
.
But what does the following do
public static implicit operator byte?(BytesType o) { return ConvertTo<byte>(o); }
Particularly the conditional operator. What does the conditional operator signify?
Thanks in advance.