BootstrapComponents.Core.HtmlAttributes.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : HtmlAttributes
return HtmlAttributes
        public HtmlAttributes Clone()
        {
            return new HtmlAttributes(_attributes.ToDictionary(x => x.Key, x => new HtmlAttributes(x.Value)));
        }