In C# we have this conditional assignment:
var test = 1;
var something = (test == 1)? "P":"C";
Or
var test = null;
var something = test ?? "";
Is it possible to do it in vb.net?
I am using to program in c# but in this project I am programming in vb.net, and I don't remember if it is possible to do it.