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;
        }