public Interface(string name) { Name = name; Attributes = new Collection <AttributeGroup>(); GenericParameters = new Collection <GenericParameter>(); Interfaces = new Collection <InterfaceReference>(); Body = new InterfaceBody(); Visibility = TypeVisibilityModifier.Public; }
public StaticClassNestedInterface(string name) { Name = name; Attributes = new Collection <AttributeGroup>(); GenericParameters = new Collection <GenericParameter>(); Interfaces = new Collection <InterfaceReference>(); Body = new InterfaceBody(); Visibility = ClassMemberVisibilityModifier.Private; }