Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CurrentDirectory

string System.Environment.CurrentDirectory
staticgetset

Definition at line 137 of file Environment.cs.

138 {
139 get
140 {
142 }
143 set
144 {
145 if (value == null)
146 {
147 throw new ArgumentNullException("value");
148 }
149 if (value.Length == 0)
150 {
151 throw new ArgumentException(SR.Argument_PathEmpty, "value");
152 }
154 }
155 }
static string CurrentDirectoryCore

Referenced by System.IO.Directory.GetCurrentDirectory().