.NET クラス内では、.NET を介してプロパティとメンバーにアクセスしますthis
。を使用せずにアクセスした場合の違いは何ですかthis
。
public class Test
{
private string _test;
public Test()
{
this.Test = "test";
// vs.
Test = "test";
// and
this._test = "test";
// vs.
_test = "test";
}
public string Test { get; set; }
}