Below code gets changed, introducing compilation warning:
public class Class1
{
private string _myString;
public Class1(string myString)
{
_myString = myString;
}
public string MyString
{
get { return _myString; }
}
}
this qualifier should be added in ctor body, to preserve meaning of the code.
Original issue reported on code.google.com by wlodarcz...@gmail.com on 18 Oct 2011 at 9:43
Original issue reported on code.google.com by
wlodarcz...@gmail.com
on 18 Oct 2011 at 9:43