AcadLib.IO.Path.GetUserPluginFile C# (CSharp) Method

GetUserPluginFile() private method

private GetUserPluginFile ( string plugin, string fileName ) : string
plugin string
fileName string
return string
        public static string GetUserPluginFile([NotNull] string plugin, [NotNull] string fileName)
        {
            var pluginFolder = GetUserPluginFolder(plugin);
            return System.IO.Path.Combine(pluginFolder, fileName);
        }