How to change a variable type in C#?
- by Mosho Mulan
I wanted to use something like this:
if(x==5)
{
var mydb= ........ ;
}
else
{
var mydb = ........ ;
}
but it didn't work because I can't declare a variable inside if statement.
So I tried to do this:
var mydb;
if (x==5)
{
mydb= ............. ;
}
else
{
mydb=.............;
}
but id didn't work either because I had to initialize the variable (mydb).
So the question is: I don't necessarily know the type of the variable, can I declare it anyway and then change the type inside the if statement?