Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

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 79 views
1 answer 116 views
116 views asked Jan 18, 2017 by avibootz
2 answers 233 views
...