예제 #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;
 }