コード例 #1
0
ファイル: StaticVars.cs プロジェクト: jaywha/RApID
 public void initStaticVars()
 {
     LogHandler = new csLogging(System.Environment.UserName, DateTime.Now, Properties.Settings.Default.LogWriteLocation);
     if (VersionControl == null)
     {
         VersionControl = new csVersionControl();
     }
 }
コード例 #2
0
ファイル: StaticVars.cs プロジェクト: jaywha/RApID
 internal void disposeStaticVars()
 {
     LogHandler     = null;
     VersionControl = null;
 }