FastQuant.FileDataServer.Open C# (CSharp) Method

Open() public method

public Open ( ) : void
return void
        public override void Open()
        {
            if (!this.opened)
            {
                this.dataFile.Open(FileMode.OpenOrCreate);
                this.byType = new IdArray<DataSeries>[128];
                for (int i = 0; i < this.byType.Length; i++)
                    this.byType[i] = new IdArray<DataSeries>();
                this.opened = true;
            }
        }