cscz/cscz/Help.md

22 lines
624 B
Markdown
Raw Normal View History

2016-05-08 11:31:14 +00:00
cscz - The C# Class Generator, v0.1
By Starbeamrainbowlabs (@SBRLabs)
Built from https://git.starbeamrainbowlabs.com/sbrl/cscz/
2016-05-08 11:14:34 +00:00
Usage:
cat filename | ./cscz
Options:
Argument Meaning
-------------------------------------------------------------------------------
2016-06-27 20:22:39 +00:00
--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.
2016-05-08 11:14:34 +00:00
Examples:
cat MyDef.cscz | ./cscz
tee | ./cscz >Carrot.cs