14 lines
186 B
C#
14 lines
186 B
C#
|
// CS1525: Unexpected symbol `returnValue'
|
||
|
// Line: 11
|
||
|
|
||
|
public class C
|
||
|
{
|
||
|
public void Foo ()
|
||
|
{
|
||
|
string returnValue = null;
|
||
|
|
||
|
returnValue += (1+3)
|
||
|
returnValue += ("");
|
||
|
}
|
||
|
}
|