public System.CodeDom.CodeAttributeArgumentCollection ToCodeDom()
        {
            System.CodeDom.CodeAttributeArgumentCollection args =
                new System.CodeDom.CodeAttributeArgumentCollection();

            foreach (AttributeArgument arg in this.Values)
            {
                args.Add(arg.ToCodeDom());
            }

            return(args);
        }
 public void AddRange(System.CodeDom.CodeAttributeArgumentCollection value)
 {
 }
 public CodeAttributeArgumentCollection(System.CodeDom.CodeAttributeArgumentCollection value)
 {
 }
        public System.CodeDom.CodeAttributeArgumentCollection ToCodeDom()
        {
            System.CodeDom.CodeAttributeArgumentCollection args =
                new System.CodeDom.CodeAttributeArgumentCollection();

            foreach(AttributeArgument arg in this.Values)
            {
                args.Add( arg.ToCodeDom() );
            }

            return args;
        }