File tree Expand file tree Collapse file tree 5 files changed +6
-66
lines changed
Expand file tree Collapse file tree 5 files changed +6
-66
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ Well don't worry! This `buffer` nuget package aims to solve the issues of `ReadL
1717
1818#### Example Syntax
1919``` cs
20- prad_buffer input_buffer = new prad_buffer ();
20+ PradBuffer InputBuffer = new PradBuffer ();
2121
22- input_buffer . get_input ();
22+ InputBuffer . GetInput ();
2323
24- string value = input_buffer . get_buffer_as_string ();
24+ string value = InputBuffer . GetBufferAsString ();
2525
26- input_buffer .clear_buffer ();
26+ InputBuffer .clear_buffer ();
2727```
2828
2929### Input process
@@ -32,7 +32,7 @@ The input function is overloaded so there are two different ways to use it.
3232#### Method 1
3333` code.cs `
3434``` cs
35- input_buffer . get_input ();
35+ InputBuffer . GetInput ();
3636```
3737
3838` output: `
@@ -43,7 +43,7 @@ input_buffer.get_input();
4343#### Method 2
4444` code.cs `
4545``` cs
46- input_buffer . get_input (" command > " );
46+ InputBuffer . GetInput (" command > " );
4747```
4848
4949` output: `
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments