check if multiple variables are null c#
if((string1 ?? string2 ?? string3 ?? string4 ?? string5 ?? string6) == null){ ;}
check if multiple variables are null c#
if((string1 ?? string2 ?? string3 ?? string4 ?? string5 ?? string6) == null){ ;}
c# check multiple variables for null
bool allNull = strings.All(s => s == null);
// if you are using a collection
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us