@using System.Text @using AutoRest.CSharp.Model @inherits AutoRest.Core.Template @Header("// ") @EmptyLine namespace @Settings.Namespace { @foreach (var usingString in Model.Usings) { @:using @usingString; } @EmptyLine /// /// Extension methods for @(Model.ExtensionTypeName). /// public static partial class @(Model.ExtensionTypeName)Extensions { @foreach (MethodCs method in Model.Methods) { if (method.ExcludeFromInterface) { continue; } @:@(Include(new ExtensionMethodTemplate(), method)) @EmptyLine } } }