Пример #1
0
 /// <summary>
 /// Initializes an <see cref="EmulatedBisFileSystemCreator"/> with the provided configuration.
 /// </summary>
 /// <param name="config">The configuration to use.</param>
 public EmulatedBisFileSystemCreator(EmulatedBisFileSystemCreatorConfig config)
 {
     Config = config;
 }
Пример #2
0
 /// <summary>
 /// Initializes an <see cref="EmulatedBisFileSystemCreator"/> with the default
 /// <see cref="EmulatedBisFileSystemCreatorConfig"/> using the provided <see cref="IFileSystem"/>.
 /// Each partition will be located at their default paths in this IFileSystem.
 /// </summary>
 /// <param name="rootFileSystem">The <see cref="IFileSystem"/> to use as the root file system.</param>
 public EmulatedBisFileSystemCreator(IFileSystem rootFileSystem)
 {
     Config = new EmulatedBisFileSystemCreatorConfig();
     Config.RootFileSystem = rootFileSystem;
 }