AsmResolver.Net.GacDirectory.GacDirectory C# (CSharp) Method

GacDirectory() public method

public GacDirectory ( string path, string folderPrefix ) : System
path string
folderPrefix string
return System
        public GacDirectory(string path, string folderPrefix)
        {
            if (path == null)
                throw new ArgumentNullException("path");
            DirectoryPath = path;
            FolderPrefix = folderPrefix ?? string.Empty;
        }