using system.collections.generic;
namespace designlibrary
{
// this class violates the rule.
public class integercollection: collectionbase
{
// methods overrides using int32.
}
// this class satisfies the rule.
using system.collections.generic;
namespace designlibrary
{
// this class violates the rule.
public class integercollection: collectionbase
{
// methods overrides using int32.
}
// this class satisfies the rule.