Do we have any operator in C# by which I can avoid short circuit evaluation and traverse to all the conditions.
say
if(txtName.Text.xyz() || txtLas
Just use a single bar;
if(txtName.Text.xyz() | txtLName.Text.xyz()) { }