mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
28 lines
723 B
C#
28 lines
723 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; } }
|
|
}
|
|
}
|