BTDBTest.ODBIteratorTest.ToStringVisitor.VisitSingleton C# (CSharp) Method

VisitSingleton() public method

public VisitSingleton ( uint tableId, string tableName, ulong oid ) : bool
tableId uint
tableName string
oid ulong
return bool
            public bool VisitSingleton(uint tableId, string tableName, ulong oid)
            {
                Builder.AppendFormat("Singleton {0}-{1} oid:{2}", tableId, tableName ?? "?Unknown?", oid);
                Builder.AppendLine();
                return true;
            }