You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns an absolute path relative to the ExePath. This method works with both directory and file relative paths. If the path is actually absolute, it will return the absolute path.
Example:
If your ExePath is C:\Path\To\MyAwesomeTool.exe...
varmypath=@"..\..\My\Other\Path";mypath=BizArk.Core.Application.GetPath(mypath);// Prints "C:\My\Other\Path"Console.WriteLine(mypath);