namespace ICSharpCode.Decompiler.Tests.TestCases.ILPretty { internal class Issue982 { private string textStr; private string textStr2; public string Text { get { return textStr; } set { textStr = value; } } public string this[int index] { get { return textStr2; } set { textStr2 = value; } } } }