Horje
c# get script directory Code Example
c# get script directory
System.IO.Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
c# get script directory
string appPath = System.IO.Path.GetDirectoryName(Application.ExecutablePath);
get working directory c#
var DDIR = System.IO.Directory.GetCurrentDirectory();
var WorkingDirectory = "";
int index = DDIR.IndexOf(@"\");
if (index > 0)
	WorkingDirectory = DDIR.Substring(0, index) + @"\";




Csharp

Related
xamarin button text lowercase Code Example xamarin button text lowercase Code Example
unity reload current scene Code Example unity reload current scene Code Example
c# double value with 2 decimal places Code Example c# double value with 2 decimal places Code Example
c# remove accents Code Example c# remove accents Code Example
c# empty IEnumerable Code Example c# empty IEnumerable Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7