CheckSharp.Checks.Coding

EmptyStatementCheck

Checks if an empty statement is contained in source code. In this example

foreach (string in keys)
{
...
};
the semicolon at the end of the foreach loop would be detected.

NonPrivateMemberFieldCheck

Checks that code does not contain any non private fields. This check offers an additional property to perform this check ONLY on public accessible classes. This check does not check enum, struct. Const and readonly members of classes are permitted to be protected or public.

PropertyDefaultDescription
allowinprivateclassTrue Defines if public and protected class members are allowed in private inner classes. In case set to true no warnings are given in case a member of an inner private class is defined public.

ParameterCountCheck

Checks the number of parameters passed to a method against a given limit.

PropertyDefaultDescription
max7