Compare commits

..

3 commits

2 changed files with 16 additions and 1 deletions

View file

@ -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>

View file

@ -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