NuGet.PhysicalFileSystem.PhysicalFileSystem C# (CSharp) 메소드

PhysicalFileSystem() 공개 메소드

public PhysicalFileSystem ( string root ) : System
root string
리턴 System
        public PhysicalFileSystem(string root)
        {
            if (String.IsNullOrEmpty(root))
            {
                throw new ArgumentException(CommonResources.Argument_Cannot_Be_Null_Or_Empty, "root");
            }
            _root = root;
        }