SpriteEditor.FileAssociationHelper.GetAssemblyCommand C# (CSharp) Method

GetAssemblyCommand() private static method

private static GetAssemblyCommand ( ) : string
return string
        private static string GetAssemblyCommand()
        {
            string runningexe = System.Reflection.Assembly.GetEntryAssembly().CodeBase.Replace("/",@"\");
            return runningexe.Substring(8, runningexe.Length - 8) + " %1";
        }