例如,我想要以下类(用较新的 c# 版本编写):public class Database{ static Lazy<Database> _instance = new Lazy<Database>(() => new Database()); public static Database Instance => _instance.Value; private string connectionString = ""; public SqlConnection Connection => new SqlConnection(connectionString);}我怎样才能在 C# 版本 4 中做到这一点?
1 回答
- 1 回答
- 0 关注
- 164 浏览
添加回答
举报
0/150
提交
取消