Tagged Questions

3
votes
1answer
99 views

Library support for Scala’s NotNull trait

As far as I understand, if you want a reference type to be non-nullable you have to mixin the magic NotNull trait, and the compiler will automatically prevent you from putting null-able values in it. …
12
votes
6answers
663 views

C# newbie: what’s the difference between “bool” and “bool?” ?

Hello, I'm starting with C#, and encountered something that puzzles me. I use the "bool" type for variables as I was used to in C++, and I try to put the values of functions or properties I expect to …
7
votes
5answers
468 views

Alternatives to nullable types in C#

I am writing algorithms that work on series of numeric data, where sometimes, a value in the series needs to be null. However, because this application is performance critical, I have avoided the use …
2
votes
5answers
220 views

Is there anything I should worry about when using nullable types in .Net 2.0?

C# 2.0 gives me access to nullable types. This seems very convenient when I want the DateTime variable in the database to be null. Is there anything I should worry about when using nullable types or …