Introducing Nullable Reference Types in C#. Is there hope for D, too?

codephantom me at noyb.com
Fri Nov 17 03:00:34 UTC 2017


On Friday, 17 November 2017 at 01:47:01 UTC, Michael V. Franklin 
wrote:
> In C#, you get a compiler error.
>
> // Example B
> class Test
> {
>     public int Value;
> }
> 					
> public class Program
> {
>     public static void Main()
>     {
>         Test t;
>         t.Value++;  // Error: Use of unassigned local variable 
> 't'
>     }
> }
> https://dotnetfiddle.net/8diEiG
>

Let's try reversing that question.

Is there hope for C#, so that it will let me do something with 
nothing.

D let's me do that ;-)

The problem though, seems to be the runtime environment..My code 
specifically said I wanted to do something with nothing, the 
compiler said, sure, go ahead..and then it crashed at execution?

Fix the runtime so it does what I want.




More information about the Digitalmars-d mailing list