Compare commits
3 commits
77c20cf8ef
...
6418f52bf8
Author | SHA1 | Date | |
---|---|---|---|
6418f52bf8 | |||
92fde60f37 | |||
ecdffd85a7 |
2 changed files with 16 additions and 1 deletions
|
@ -24,7 +24,12 @@ namespace cscz
|
|||
{ "cc", "System.Collections.Concurrent" },
|
||||
{ "r", "System.Text.RegularExpressions" },
|
||||
{ "n", "System.Net" },
|
||||
{ "s", "System.Net.Sockets" }
|
||||
{ "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" },
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
|
|
10
cscz/Help.md
10
cscz/Help.md
|
@ -5,7 +5,17 @@ Built from https://git.starbeamrainbowlabs.com/sbrl/cscz/
|
|||
Usage:
|
||||
cat filename | ./cscz
|
||||
|
||||
Options:
|
||||
|
||||
Argument Meaning
|
||||
-------------------------------------------------------------------------------
|
||||
--public Causes the parameters of the class to be defined as public data members. This is the default.
|
||||
--private Causes the parameters of the class to be defined as private data members with public accessors.
|
||||
|
||||
Note that arguments specified later always override arguments specified earlier.
|
||||
|
||||
Examples:
|
||||
cat MyDef.cscz | ./cscz
|
||||
|
||||
tee | ./cscz >Carrot.cs
|
||||
|
||||
|
|
Loading…
Reference in a new issue