Cosmos/source/FrodeTest/Shell/EnvironmentVariables.cs
2008-08-16 23:49:33 +00:00

28 lines
771 B
C#

//using System;
//using System.Collections.Generic;
//using System.Linq;
//using System.Text;
//using System.IO;
//namespace FrodeTest.Shell
//{
// public class EnvironmentVariables
// {
// private static EnvironmentVariables mCurrent = null;
// public static EnvironmentVariables GetCurrent()
// {
// if (mCurrent == null)
// mCurrent = new EnvironmentVariables();
// return mCurrent;
// }
// //Hidden constructor
// private EnvironmentVariables()
// {
// }
// private string mCurrentDirectory = "/0/";
// public string CurrentDirectory { get { return mCurrentDirectory; } set { mCurrentDirectory = value; } }
// }
//}