摘要:
#单例 public class Singleton<T> where T : new() { private static T instance; public static T Instance { get { if (instance == null) { instance = new T() 阅读全文
摘要:
#单例 public class Singleton<T> where T : new() { private static T instance; public static T Instance { get { if (instance == null) { instance = new T() 阅读全文
摘要:
git init // 生成一个.git子目录,产生一个仓库 git status //查看当前目录下所有文件的状态 git add. //将该目录下的所有文件提交到暂存区 git add 文件名 //将该目录下指定的文件提交到暂存区 git commit -m "为这次提交取一个名字" //将暂存 阅读全文
|