多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
* 使用 Camel 风格。 * 使用描述性参数名称。参数名称应当具有足够的描述性,以便参数的名称及其类型可用于在大多数情况下确定它的含义。 ~~~ public string GetPagingList(int pageIndex, string currentUrl = null) { int number = 0; //... } ~~~ * 类型内部的私有和受保护字段,使用Camel风格命名,但加“_”前缀 ~~~ public class UserController : Controller { private readonly IUserAppService _userAppService; private readonly IRoleAppService _roleAppService; private readonly IPermissionAppService _permissionAppService; } ~~~