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.
20 lines
333 B
20 lines
333 B
using System.Runtime.CompilerServices; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.ILPretty |
|
{ |
|
internal class Issue2104 |
|
{ |
|
[CompilerGenerated] |
|
private readonly string text; |
|
public string Text { |
|
[CompilerGenerated] |
|
get { |
|
return text; |
|
} |
|
} |
|
public Issue2104(string text) |
|
{ |
|
this.text = text; |
|
} |
|
} |
|
}
|
|
|