标签: .net nullable
如何创建空字节?
这就是我的工作
byte? nb = null; methodCall (rdr.IsDBNull(15) ? nb : rdr.GetByte(15));
这甚至不构成 什么是正确的语法?
methodCall (rdr.IsDBNull(15) ? (null)byte : rdr.GetByte(15));
答案 0 :(得分:2)
尝试:
(byte?)null : rdr.GetByte(...)