All values are set in the options form.
Full Names
Dispalay namespace in the type.
Form form = new Form(); // off System.Windows.Forms.Form form = new System.Windows.Forms.Form(); // on
Hex Values
Display hexadecimal value in the numeric constant.
int i = 65535; // off int i = 0xFFFF; // on
Type Detail
Display type of the field, return and parameters types of the method in pseudo assembler code.
callvirt Graphics.DrawLine // off callvirt void Graphics.DrawLine(Pen, int, int, int, int) // on
Unicode Chars
Display unicode number for nonenglish char in the string.
string s = "\u0420\u041A"; // on
Tab Space
Specifies the tab space of the code.
Single Statement Brace
Indicates whether the single statement if/else have braces.
// off if (e.Button == MouseButtons.Left) OnPageDragEnd(e); else OnPageDragQuit(e); // on if (e.Button == MouseButtons.Left) { OnPageDragEnd(e); } else { OnPageDragQuit(e); }
Empty Lines
Indicates whether empty lines are before and after each type (class, enum, etc).
// off namespace DisSharp.Examples { public class StringCollection : CollectionBase { public string this[int index] // on namespace DisSharp.Examples { public class StringCollection : CollectionBase { public string this[int index]
Minimum Editor Length
Specifies the minimum length of the editor textbox in characters.