SyntaxFix
Write A Post
Hire A Developer
Questions
I use extention method SelfChk
static class MyExt { //Self Check public static void SC(this string you,ref string me) { me = me ?? you; } }
Then use like
string a = null; "A".SC(ref a);