mirror of https://github.com/icsharpcode/ILSpy.git
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.
19 lines
440 B
19 lines
440 B
using System; |
|
|
|
internal class MemberInitializerImplicitCtor |
|
{ |
|
private int field = Compute(1); |
|
|
|
private int Property { get; } = Compute(2); |
|
|
|
private static int Compute(int value) |
|
{ |
|
return value; |
|
} |
|
|
|
private static void Main() |
|
{ |
|
MemberInitializerImplicitCtor memberInitializerImplicitCtor = new MemberInitializerImplicitCtor(); |
|
Console.WriteLine(memberInitializerImplicitCtor.field + memberInitializerImplicitCtor.Property); |
|
} |
|
}
|
|
|