11
Loại Nullable như một tham số chung có thể?
Tôi muốn làm một cái gì đó như thế này: myYear = record.GetValueOrNull<int?>("myYear"), Lưu ý loại nullable là tham số chung. Vì GetValueOrNullhàm có thể trả về null nên lần thử đầu tiên của tôi là: public static T GetValueOrNull<T>(this DbDataRecord reader, string columnName) where T : class { object …