BTDBTest.ODBIteratorTest.ToStringVisitor.StartObject C# (CSharp) Méthode

StartObject() public méthode

public StartObject ( ulong oid, uint tableId, string tableName, uint version ) : bool
oid ulong
tableId uint
tableName string
version uint
Résultat bool
            public bool StartObject(ulong oid, uint tableId, string tableName, uint version)
            {
                Builder.AppendFormat("Object oid:{0} {1}-{2} version:{3}", oid, tableId, tableName ?? "?Unknown?",
                    version);
                Builder.AppendLine();
                return true;
            }