AddonManager.Program.getPath C# (CSharp) Method

getPath() private static method

private static getPath ( this sourceString, String prefix ) : String
sourceString this
prefix String
return String
        private static String getPath(this String sourceString, String prefix)
        {
            return Regex.Match(sourceString, prefix + " '(.*?)'").Groups[1].Value;
        }