natix.SimilaritySearch.MultiNeighborhoodHash.Load C# (CSharp) Method

Load() public method

public Load ( BinaryReader Input ) : void
Input System.IO.BinaryReader
return void
        public override void Load(BinaryReader Input)
        {
            base.Load (Input);
            var len = Input.ReadInt32 ();
            this.A = new NeighborhoodHash[len];
            for (int i = 0; i < len; ++i) {
                var a = new NeighborhoodHash();
                a.Load(Input);
                this.A[i] = a;
            }
        }