hi , i have little problem with if
{
string nom;
string ou;
nom = "1";
if (nom == "1")
{
nom +=1;
ou = nom;
}
Console.Write(ou);
}
but i cant print ou value i dont know why
|
|
hi , i have little problem with if
but i cant print ou value i dont know why
|
|||
|
|
|
Another option is to set ou in an else:
|
|||
|
|
|
|
Does this even compile?
|
||||||||
|
|
|
Try replacing the second line with
The problem is that if nom turns out not to equal "1", the variable ou won't have been initialized. The compiler here wants to guarantee that ou has been assigned a value. |
||
|
|
|
|
This snippet won't even compile, let alone printing
to, say:
will do just fine. |
||||
|
|
|
This is because ou is unassigned outside the scope of the if block. Change the declaration line to |
||
|
|
|
|
Try something like this
|
|||
|
|
|
|
C# compiler requires the variables to be definitely initialized before use. Definite initialization is a compile-time thing, it doesn't consider runtime values of variables. However, if the variable |
||
|
|