Ich habe diesen Code nach decompileWas bedeutet das Symbol <> in MSIL?
SampleClass sampleClass;
SampleClass <>g__initLocal0;
int y;
sampleClass = null;
Label_0018:
try
{
<>g__initLocal0 = new SampleClass();
<>g__initLocal0.X = 5;
<>g__initLocal0.Y = 10;
sampleClass = <>g__initLocal0;
goto Label_003A;
}
catch (Exception)
{
Label_0035:
goto Label_003A;
}
Label_003A:
y = sampleClass.Y;
Ich weiß nicht, was bedeutet Operator/Symbol <> vor einigen Operationen. Weiß jemand das?
Für Informationen darüber, wie genau diese Namen gebildet werden, siehe [diese Antwort von Eric Lippert] (http://stackoverflow.com/a/2509524/41071). – svick