How to assign value of nullable type to a non-nullable type in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        int? x = null;
        int? y = 8;
        int? z = 3;

        int? a = x??y;
        int? b = x??z;
        int? c = y??x;

        Console.WriteLine(a.GetValueOrDefault());
        Console.WriteLine(b.GetValueOrDefault());
        Console.WriteLine(c.GetValueOrDefault());
    }
}
 
  
  
/*
run:
  
8
3
8

*/

 



answered Dec 13, 2020 by avibootz

Related questions

1 answer 91 views
1 answer 120 views
120 views asked Jan 18, 2017 by avibootz
2 answers 250 views
...