10
“As” ve nullable tiplerle performans sürprizleri
Ben sadece null edilebilir türleri ile ilgilenen Derinlik C # Bölüm 4 gözden geçiriyorum, ve ben yazmak için izin verir "as" operatörü kullanma hakkında bir bölüm ekliyorum: object o = ...; int? x = o as int?; if (x.HasValue) { ... // Use x.Value in here } Bunun gerçekten düzgün …
330
c#
performance
clr
nullable
unboxing