We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5361cfb commit 788e08cCopy full SHA for 788e08c
1 file changed
public/NUGET_README.md
@@ -8,6 +8,25 @@ without incurring the overhead of creating new string instances for each operati
8
This package provides new types:
9
+ NiTiS.MutableString
10
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
30
## Contributing
31
Contributions are welcome!
32
Please read [CONTRIBUTING.md](https://github.com/NiTiSon/MutableString/blob/stable/CONTRIBUTING.md) before making any contribution to repository.
0 commit comments