public class SomeClass
{
private readonly AuthenticationService _authenticationService = null;
private readonly ProfileService _profileService = null;
public SomeClass(IAuthenticationService authenticationService, ProfileService profileService)
{
_authenticationService = authenticationService;
_bgMeterProfileService = bgMeterProfileService;
}
...
我正在使用 _varName 作为私有变量
这是为了区分私有变量和构造函数参数。
想把这段代码公开的扔出去看看有没有更好的方法区分私有变量和方法参数