02-17-2014, 12:24
(02-13-2014, 23:43)SgtLegend Wrote: Sorry, my asshole mode will be in use for the moment.
This is redundant, you're not using any system references
CHSARP Code
using System;
Why the space and the capital T?
Code:^2 To
Again, not sure why there is a space
Code:iPrintLn(" ^2"
Another capital letter?
Code:^3Has
Keep consistent, leave a space after the comma
CHSARP Code
",null);
Use proper naming conventions, namespaces and classes should always start with a capital letter, classes should never contain the same exact word as the namespace.
Wrong
CHSARP Code
namespace welcomer { public class welcomer : CPlugin {} }
Correct
CHSARP Code
namespace Welcomer { public class Main : CPlugin {} }
Sorry, just felt like being a code nazi today.
Comfortability as is.