/// <summary> /// Initializes a new instance of the VfsFileSystemInfo class. /// </summary> /// <param name="name">The name of the file system.</param> /// <param name="description">A one-line description of the file system.</param> /// <param name="openDelegate">A delegate that can open streams as the indicated file system.</param> public VfsFileSystemInfo(string name, string description, VfsFileSystemOpener openDelegate) { Name = name; Description = description; _openDelegate = openDelegate; }
/// <summary> /// Initializes a new instance of the VfsFileSystemInfo class. /// </summary> /// <param name="name">The name of the file system.</param> /// <param name="description">A one-line description of the file system.</param> /// <param name="openDelegate">A delegate that can open streams as the indicated file system.</param> public VfsFileSystemInfo(string name, string description, VfsFileSystemOpener openDelegate) { _name = name; _description = description; _openDelegate = openDelegate; }