AsmResolver.Net.GacDirectory.GacDirectory C# (CSharp) 메소드

GacDirectory() 공개 메소드

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