Lucene.Net.Index.TestPerSegmentDeletes.PrintDelDocs C# (CSharp) Метод

PrintDelDocs() публичный статический Метод

public static PrintDelDocs ( Bits bits ) : void
bits Bits
Результат void
        public static void PrintDelDocs(Bits bits)
        {
            if (bits == null)
            {
                return;
            }
            for (int x = 0; x < bits.Length(); x++)
            {
                Console.WriteLine(x + ":" + bits.Get(x));
            }
        }