NuGet.PhysicalFileSystem.PhysicalFileSystem C# (CSharp) Method

PhysicalFileSystem() public method

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