public static IR1Top RInterface(this IR1Top r1Top, IDictionary <IPhilote <IGInterface>, IGInterface> gInterfaces) { foreach (var kvp in gInterfaces) { r1Top.RInterface(kvp.Value); } return(r1Top); }
public static IR1Top RInterface(this IR1Top r1Top, IEnumerable <IGInterface> gInterfaces) { foreach (var o in gInterfaces) { r1Top.RInterface(o); } return(r1Top); }
public static IR1Top RInterface(this IR1Top r1Top, IEnumerable <KeyValuePair <IPhilote <IGInterface>, IGInterface> > gInterfaces) { foreach (var o in gInterfaces) { r1Top.RInterface(o.Value); } return(r1Top); }
public static IR1Top RNamespace(this IR1Top r1Top, IGNamespace gNamespace) { r1Top.Sb.RenderNamespaceDeclarationStringBuilder(gNamespace, r1Top.Indent, r1Top.Eol, r1Top.Ct); r1Top.Indent.Append(r1Top.IndentDelta); r1Top.RClass(gNamespace.GClasss); r1Top.RInterface(gNamespace.GInterfaces); r1Top.RDelegateGroup(gNamespace.GDelegateGroups); r1Top.RDelegate(gNamespace.GDelegates); r1Top.REnumerationGroup(gNamespace.GEnumerationGroups); r1Top.REnumeration(gNamespace.GEnumerations); r1Top.Indent.ReplaceFirst(r1Top.IndentDelta, ""); r1Top.Sb.RenderNamespaceTerminationStringBuilder(r1Top.Indent, r1Top.Eol, r1Top.Ct); return(r1Top); }