1
vote
Why is “null” present in C# and java?
There are situations in which null is a nice way to signify that a reference has not been initialized. This is important in som scenarios.
For instance:
MyResource …
