FileSystem
Defines a singleton file system instance. This should be constructor injected where file system API usage is required.
using System;
namespace Relativity.DataExchange.Io
{
[CLSCompliant(false)]
public static class FileSystem
{
public static IFileSystem Instance => new FileSystemWrap();
}
}