Init() private method

private Init ( ) : void
return void
        internal void Init()
        {
            _isInitial               = false;
            _count                   = 0;
            _expectedType            = BinaryTypeEnum.ObjectUrt;
            _expectedTypeInformation = null;

            _name            = null;
            _objectTypeEnum  = InternalObjectTypeE.Empty;
            _memberTypeEnum  = InternalMemberTypeE.Empty;
            _memberValueEnum = InternalMemberValueE.Empty;
            _dtType          = null;

            // Array Information
            _numItems = 0;

            //binaryTypeEnum
            _typeInformation = null;

            // Member Information
            _memberLength     = 0;
            _binaryTypeEnumA  = null;
            _typeInformationA = null;
            _memberNames      = null;
            _memberTypes      = null;

            _pr.Init();
        }