在我的 .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; }
}