Documented using statement shortcuts in README.md.
This commit is contained in:
parent
1fe1b54174
commit
e4fb2f2a7c
1 changed files with 17 additions and 1 deletions
18
README.md
18
README.md
|
@ -1,7 +1,7 @@
|
||||||
# cscz
|
# cscz
|
||||||
The one and only C♯ Class Generator.
|
The one and only C♯ Class Generator.
|
||||||
|
|
||||||
To use, build the project (F8 in Monodevelop, CTRL + SHIFT + B in Visual Studio) and then pipe your compressed class definition file into it. Example definitions:
|
To use | build the project (F8 in Monodevelop | CTRL + SHIFT + B in Visual Studio) and then pipe your compressed class definition file into it. Example definitions:
|
||||||
|
|
||||||
```csharp
|
```csharp
|
||||||
# Shop
|
# Shop
|
||||||
|
@ -25,6 +25,22 @@ Matrix4 transformation
|
||||||
Vector3 position
|
Vector3 position
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Using Statement Shortcuts
|
||||||
|
The C♯ Class Generator supports shortcuts in the using statement declarations (`u System`). Here's a table of all the shortcuts added so far:
|
||||||
|
|
||||||
|
Shortcut | Expansion
|
||||||
|
------------|---------------------------------
|
||||||
|
`c` | `System.Collections.Generic`
|
||||||
|
`cc` | `System.Collections.Concurrent`
|
||||||
|
`r` | `System.Text.RegularExpressions`
|
||||||
|
`n` | `System.Net`
|
||||||
|
`s` | `System.Net.Sockets`
|
||||||
|
`x` | `Microsoft.Xna.Framework`
|
||||||
|
`xg` | `Microsoft.Xna.Framework.Graphics`
|
||||||
|
`xs` | `Microsoft.Xna.Framework.Storage`
|
||||||
|
`xi` | `Microsoft.Xna.Framework.Input`
|
||||||
|
`oo` | `OpenTK.Graphics.OpenGL`
|
||||||
|
|
||||||
See the [Changelog](https://git.starbeamrainbowlabs.com/sbrl/cscz/src/master/Changelog.md) for a summary of what's changed between releases.
|
See the [Changelog](https://git.starbeamrainbowlabs.com/sbrl/cscz/src/master/Changelog.md) for a summary of what's changed between releases.
|
||||||
|
|
||||||
Type `./cscz.exe --help` for usage information or see [Help.md](https://git.starbeamrainbowlabs.com/sbrl/cscz/src/master/cscz/Help.md).
|
Type `./cscz.exe --help` for usage information or see [Help.md](https://git.starbeamrainbowlabs.com/sbrl/cscz/src/master/cscz/Help.md).
|
Loading…
Reference in a new issue