Untitled
Anonymous
csharp
04/09/2024 8:34 AM
140 B
20
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);