Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeExpressionCollection.cs / 1305376 / CodeExpressionCollection.cs
// ------------------------------------------------------------------------------ //// // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable() ] public class CodeExpressionCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeExpressionCollection() { } ////// Initializes a new instance of ///. /// /// public CodeExpressionCollection(CodeExpressionCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeExpressionCollection(CodeExpression[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeExpression this[int index] { get { return ((CodeExpression)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeExpression value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeExpression[] value) { if (value == null) { throw new ArgumentNullException("value"); } for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) { this.Add(value[i]); } } ///Copies the elements of an array to the end of the ///. /// public void AddRange(CodeExpressionCollection value) { if (value == null) { throw new ArgumentNullException("value"); } int currentCount = value.Count; for (int i = 0; i < currentCount; i = ((i) + (1))) { this.Add(value[i]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CodeExpression value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeExpression[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeExpression value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeExpression value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeExpression value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ------------------------------------------------------------------------------ //Removes a specific ///from the /// . // // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable() ] public class CodeExpressionCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeExpressionCollection() { } ////// Initializes a new instance of ///. /// /// public CodeExpressionCollection(CodeExpressionCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeExpressionCollection(CodeExpression[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeExpression this[int index] { get { return ((CodeExpression)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeExpression value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeExpression[] value) { if (value == null) { throw new ArgumentNullException("value"); } for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) { this.Add(value[i]); } } ///Copies the elements of an array to the end of the ///. /// public void AddRange(CodeExpressionCollection value) { if (value == null) { throw new ArgumentNullException("value"); } int currentCount = value.Count; for (int i = 0; i < currentCount; i = ((i) + (1))) { this.Add(value[i]); } } ////// Adds the contents of another ///to the end of the collection. /// /// public bool Contains(CodeExpression value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeExpression[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeExpression value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeExpression value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeExpression value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpModulesSection.cs
- SessionEndingEventArgs.cs
- HtmlInputText.cs
- QuaternionAnimation.cs
- SchemaImporterExtensionElement.cs
- WebHeaderCollection.cs
- ViewCellSlot.cs
- QueryReaderSettings.cs
- HtmlSelect.cs
- PanelDesigner.cs
- Compilation.cs
- AdornedElementPlaceholder.cs
- NetNamedPipeSecurity.cs
- FillBehavior.cs
- Size3DConverter.cs
- CompilerResults.cs
- GenericParameterDataContract.cs
- HashSetEqualityComparer.cs
- XmlBindingWorker.cs
- CancellationTokenRegistration.cs
- StringUtil.cs
- ConnectionManagementElementCollection.cs
- Parameter.cs
- SmiXetterAccessMap.cs
- OAVariantLib.cs
- CustomDictionarySources.cs
- Point3DCollectionConverter.cs
- TextEditorSpelling.cs
- TileModeValidation.cs
- SafeNativeMethods.cs
- ReadOnlyDictionary.cs
- PropertyExpression.cs
- EqualityComparer.cs
- XmlWellformedWriter.cs
- ControlBindingsCollection.cs
- DelegatingHeader.cs
- SmtpNegotiateAuthenticationModule.cs
- StorageRoot.cs
- ExitEventArgs.cs
- Trace.cs
- RawAppCommandInputReport.cs
- StrokeFIndices.cs
- TemplateKeyConverter.cs
- ListViewDesigner.cs
- ObjectDataSourceEventArgs.cs
- ProcessHostMapPath.cs
- DayRenderEvent.cs
- BindingValueChangedEventArgs.cs
- DesignerProperties.cs
- InfoCardBaseException.cs
- RequestQueryProcessor.cs
- DbConnectionInternal.cs
- WebPartsSection.cs
- ArrayWithOffset.cs
- Action.cs
- InputLanguageCollection.cs
- WindowPattern.cs
- ImportedNamespaceContextItem.cs
- IsolatedStorage.cs
- QueryContinueDragEventArgs.cs
- DesignerActionMethodItem.cs
- CounterCreationData.cs
- ContainerActivationHelper.cs
- VirtualDirectoryMapping.cs
- SecurityTokenException.cs
- Color.cs
- LinkedResource.cs
- WebBrowserPermission.cs
- XmlHierarchyData.cs
- ListViewInsertEventArgs.cs
- ObjectDataSourceMethodEventArgs.cs
- HttpHeaderCollection.cs
- EmbeddedMailObjectsCollection.cs
- AuthenticationSection.cs
- X509CertificateCollection.cs
- TextServicesDisplayAttributePropertyRanges.cs
- DataSourceControl.cs
- EditorPartDesigner.cs
- SqlClientWrapperSmiStreamChars.cs
- DataTableMapping.cs
- Serialization.cs
- QueryAsyncResult.cs
- X509ImageLogo.cs
- XamlTemplateSerializer.cs
- AsyncCompletedEventArgs.cs
- _Rfc2616CacheValidators.cs
- DetailsViewPageEventArgs.cs
- Label.cs
- CalendarDay.cs
- ConnectionConsumerAttribute.cs
- JsonDeserializer.cs
- Char.cs
- DoubleAnimation.cs
- PinnedBufferMemoryStream.cs
- AdapterDictionary.cs
- XsltArgumentList.cs
- XslNumber.cs
- StringResourceManager.cs
- TriggerCollection.cs
- Int32RectConverter.cs