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.
35 lines
379 B
35 lines
379 B
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty |
|
{ |
|
public record Empty |
|
{ |
|
} |
|
|
|
public record Properties |
|
{ |
|
public int A { |
|
get; |
|
set; |
|
} |
|
public int B { |
|
get; |
|
} |
|
public int C => 43; |
|
public object O { |
|
get; |
|
set; |
|
} |
|
public string S { |
|
get; |
|
set; |
|
} |
|
public dynamic D { |
|
get; |
|
set; |
|
} |
|
|
|
public Properties() |
|
{ |
|
B = 42; |
|
} |
|
} |
|
}
|
|
|