public static implicit operator byte(BytesType o) { return ConvertTo<byte>(o); }
上記は、タイプ o のオブジェクトから への暗黙的な変換を行いBytesType
ますbyte
。
しかし、次のことは何をしますか
public static implicit operator byte?(BytesType o) { return ConvertTo<byte>(o); }
特に条件演算子。条件演算子は何を意味しますか?
前もって感謝します。