コード例 #1
0
            internal bool Add(DocIndexInfo docInfo)
            {
                if (Count >= Unit.Length)
                {
                    return(false);
                }

                Unit[Count++] = docInfo;

                return(true);
            }
コード例 #2
0
 internal void Init()
 {
     DocIndexInfo[] Unit = new DocIndexInfo[65536];
 }