Skip to content

Commit 626960b

Browse files
authored
Update README.md
1 parent 6be70ea commit 626960b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,11 @@ To define a custom factory for translating `ConstantExpression` values, use:
104104
string readable = myExpression
105105
.ToReadableString(c => c.TranslateConstantsUsing(
106106
(constantType, constantValue) => GetConstantValue(constantType, constantValue)));
107-
```
107+
```
108+
109+
To specify a custom string for code indenting, use:
110+
111+
```csharp
112+
string readable = myExpression
113+
.ToReadableString(c => c.IndentUsing("\t"));
114+
```

0 commit comments

Comments
 (0)