Skip to content

Commit 788e08c

Browse files
committed
change nuget README file
1 parent 5361cfb commit 788e08c

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

public/NUGET_README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,25 @@ without incurring the overhead of creating new string instances for each operati
88
This package provides new types:
99
+ NiTiS.MutableString
1010

11+
## Using
12+
13+
```cs
14+
using System;
15+
using NiTiS;
16+
17+
class Example
18+
{
19+
void Main()
20+
{
21+
MutableString str = "Hello World";
22+
23+
str.Insert(0, "> ");
24+
25+
Console.WriteLine(str); // Output: "> Hello World"
26+
}
27+
}
28+
```
29+
1130
## Contributing
1231
Contributions are welcome!
1332
Please read [CONTRIBUTING.md](https://github.com/NiTiSon/MutableString/blob/stable/CONTRIBUTING.md) before making any contribution to repository.

0 commit comments

Comments
 (0)