public void AddRange(CodeCatchClauseCollection value)
		{
			if (value == null)
			{
				throw new ArgumentNullException("value");
			}

			int count = value.Count;
			for (int i = 0; i < count; i++)
			{
				Add(value[i]);
			}
		}
		public CodeCatchClauseCollection(CodeCatchClauseCollection value)
		{
			AddRange(value);
		}