cscz/cscz/Help.md

22 lines
658 B
Markdown
Raw Permalink Normal View History

2016-08-08 08:30:18 +00:00
cscz - The C# Class Generator, {version}
2016-05-08 11:31:14 +00:00
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
-------------------------------------------------------------------------------
--public Generates public data members for the class fields. This is the default.
--private Generates private data members with public accessors for the class fields.
--public-auto Generates public auto properties for the class fields.
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