BeerConf.Web.Application.CollectionItemHtmlHelperExtensions.CollectionItemScope.CollectionItemScope C# (CSharp) Method

CollectionItemScope() public method

public CollectionItemScope ( System.Web.Mvc.TemplateInfo templateInfo, object index ) : System
templateInfo System.Web.Mvc.TemplateInfo
index object
return System
            public CollectionItemScope(TemplateInfo templateInfo, object index)
            {
                this.templateInfo = templateInfo;
                oldPrefix = templateInfo.HtmlFieldPrefix;
                templateInfo.HtmlFieldPrefix = string.Format(CultureInfo.InvariantCulture, "{0}[{1}]", oldPrefix, index);
            }
CollectionItemHtmlHelperExtensions.CollectionItemScope