0 votes
in Dot Net by
If you want to replace multiple if-else statements in code, which statement will you use?

1 Answer

0 votes
by

In Visual basic, we can use Select-Case statement to replace multiple If-Else statement. In C#, we should use Switch-Case statement to replace multiple If-Else statement.

...