Skip to content

Commit

Permalink
Added docs
Browse files Browse the repository at this point in the history
  • Loading branch information
linkdotnet committed Nov 5, 2022
1 parent ba6b4ec commit ca318d1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/site/articles/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,12 @@ Prints:
> Hello dear World!
0.3

[Here](https://dotnetfiddle.net/wM5r0q) an interactive example where you can fiddle around with the library. The example is hosted on [https://dotnetfiddle.net/](https://dotnetfiddle.net/wM5r0q) and already has the `ValueStringBuilder` nuget package included in the latest version.
[Here](https://dotnetfiddle.net/wM5r0q) an interactive example where you can fiddle around with the library. The example is hosted on [https://dotnetfiddle.net/](https://dotnetfiddle.net/wM5r0q) and already has the `ValueStringBuilder` nuget package included in the latest version.

## Helper methods
There are also very easy to use helper methods, which doesn't need a `ValueStringBuilder` instance:
```csharp
using LinkDotNet.StringBuilder;

string helloWorld = ValueStringBuilder.Concat("Hello World!", 101);
```

0 comments on commit ca318d1

Please sign in to comment.