Skip to content

Commit 7270c95

Browse files
authored
Update README.md
1 parent 0ee4c57 commit 7270c95

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,9 @@ var table = new Table()
496496

497497
var tablebuilder = new TableBuilder();
498498
// Specify object handler to use for persons
499-
tablebuilder.ObjectHandlers.AddHandler<Person>((person, columnCount) => new object[] { person.Name, person.Position, person.Salary });
499+
tablebuilder.ObjectHandlers.AddHandler<Person>(
500+
(person, columnCount) => new object[] { person.Name, person.Position, person.Salary }
501+
);
500502
Console.WriteLine(tablebuilder.Build(table));
501503
```
502504

0 commit comments

Comments
 (0)