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.
30 lines
422 B
30 lines
422 B
using System.Runtime.CompilerServices; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.ILPretty |
|
{ |
|
internal class Issue982 |
|
{ |
|
private string textStr; |
|
|
|
private string textStr2; |
|
|
|
public string Text { |
|
get { |
|
return textStr; |
|
} |
|
set { |
|
textStr = value; |
|
} |
|
} |
|
|
|
[IndexerName("Text2")] |
|
public string this[int index] { |
|
get { |
|
return textStr2; |
|
} |
|
set { |
|
textStr2 = value; |
|
} |
|
} |
|
} |
|
}
|
|
|