Cosmos/source/FrodeTest/Shell/EnvironmentVariables.cs
Scalpel_cp a96c1729e5 Plugged String.LastIndexOf.
Added parameter checking for Directory.GetDirectories and Directory.GetFiles plugs.
Lots of changes to FrodeTest.
2008-07-30 22:56:59 +00:00

28 lines
756 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 = Path.DirectorySeparatorChar.ToString();
public string CurrentDirectory { get { return mCurrentDirectory; } set { mCurrentDirectory = value; } }
}
}