mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 12:58:39 +00:00
27 lines
703 B
C#
27 lines
703 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
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 = "/";
|
|
public string CurrentDirectory { get { return mCurrentDirectory; } set { mCurrentDirectory = value; } }
|
|
}
|
|
}
|