/// Initializes a new instance of <see cref='System.CodeDom.CodeExpressionCollection'/>.
/// </para>
/// </devdoc>
publicCodeExpressionCollection(){
}
/// <devdoc>
/// <para>
/// Initializes a new instance of <see cref='System.CodeDom.CodeExpressionCollection'/> based on another <see cref='System.CodeDom.CodeExpressionCollection'/>.
/// Initializes a new instance of <see cref='System.CodeDom.CodeExpressionCollection'/> containing any array of <see cref='System.CodeDom.CodeExpression'/> objects.
/// <see cref='System.CodeDom.CodeExpressionCollection'/> contains the specified <see cref='System.CodeDom.CodeExpression'/>.</para>
/// </devdoc>
publicboolContains(CodeExpressionvalue){
returnList.Contains(value);
}
/// <devdoc>
/// <para>Copies the <see cref='System.CodeDom.CodeExpressionCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the
/// specified index.</para>
/// </devdoc>
publicvoidCopyTo(CodeExpression[]array,intindex){
List.CopyTo(array,index);
}
/// <devdoc>
/// <para>Returns the index of a <see cref='System.CodeDom.CodeExpression'/> in
/// the <see cref='System.CodeDom.CodeExpressionCollection'/> .</para>
/// </devdoc>
publicintIndexOf(CodeExpressionvalue){
returnList.IndexOf(value);
}
/// <devdoc>
/// <para>Inserts a <see cref='System.CodeDom.CodeExpression'/> into the <see cref='System.CodeDom.CodeExpressionCollection'/> at the specified index.</para>
/// </devdoc>
publicvoidInsert(intindex,CodeExpressionvalue){
List.Insert(index,value);
}
/// <devdoc>
/// <para> Removes a specific <see cref='System.CodeDom.CodeExpression'/> from the