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.
27 lines
377 B
27 lines
377 B
namespace ICSharpCode.Decompiler.Tests.TestCases.ILPretty |
|
{ |
|
internal class Issue982 |
|
{ |
|
private string textStr; |
|
|
|
private string textStr2; |
|
|
|
public string Text { |
|
get { |
|
return this.textStr; |
|
} |
|
set { |
|
this.textStr = value; |
|
} |
|
} |
|
|
|
public string this[int index] { |
|
get { |
|
return this.textStr2; |
|
} |
|
set { |
|
this.textStr2 = value; |
|
} |
|
} |
|
} |
|
}
|
|
|