ChinhDo.Transactions.TxFileManager.TxFileManager C# (CSharp) Method

TxFileManager() static private method

Initializes the TxFileManager class.
static private TxFileManager ( ) : System
return System
        static TxFileManager()
        {
            _tempFolder = Path.Combine(Path.GetTempPath(), "CdFileMgr");
            if (! Directory.Exists(_tempFolder))
            {
                Directory.CreateDirectory(_tempFolder);
            }
        }