.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
291 B

using System;
internal class MemberInitializerStaticCtor
{
private static int field = Compute(1);
private static int Property { get; } = Compute(2);
private static int Compute(int value)
{
return value;
}
private static void Main()
{
Console.WriteLine(field + Property);
}
}