Untitled

Anonymous
plain_text
08/20/2023 11:37 AM
224 B
17
Indexable
void MyMethod1()
{
    string value1 = "";
    string value2 = value1;
}

void MyMethod2()
{
    string value1 = string.Empty;
    string value2 = value1;
}
Editor is loading...