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,877 questions

51,801 answers

573 users

How to assign var1 to var2 if var2 is null in shorthand way with C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        string var1 = "c#";
        string var2 = null;
        string var3 = "x";
        
        var2 = var2 ?? var1;
        var3 = var3 ?? var1;

        Console.WriteLine(var1);
        Console.WriteLine(var2);
        Console.WriteLine(var3);
    }
}
 
 
 
 
/*
run:
 
c#
c#
x
 
*/

 



answered Jul 29, 2023 by avibootz

Related questions

1 answer 152 views
1 answer 140 views
1 answer 156 views
1 answer 265 views
6 answers 586 views
...