Untitled
unknown
csharp
2 years ago
104 B
11
Indexable
int x = 5;
if (x == 5) {
    // string x = ""; // BAD
    x = 7; // OK
}
System.Console.WriteLine(x);
Editor is loading...
Leave a Comment
int x = 5;
if (x == 5) {
    // string x = ""; // BAD
    x = 7; // OK
}
System.Console.WriteLine(x);