Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / CodeAttributeDeclarationCollection.cs / 1 / CodeAttributeDeclarationCollection.cs
// ------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeAttributeDeclarationCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeAttributeDeclarationCollection() { } ////// Initializes a new instance of ///. /// /// public CodeAttributeDeclarationCollection(CodeAttributeDeclarationCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeAttributeDeclarationCollection(CodeAttributeDeclaration[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeAttributeDeclaration this[int index] { get { return ((CodeAttributeDeclaration)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeAttributeDeclaration value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeAttributeDeclaration[] 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(CodeAttributeDeclarationCollection 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(CodeAttributeDeclaration value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeAttributeDeclaration[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeAttributeDeclaration value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeAttributeDeclaration value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeAttributeDeclaration value) { List.Remove(value); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ------------------------------------------------------------------------------ //Removes a specific ///from the /// . // Copyright (c) Microsoft Corporation. All rights reserved. // // ----------------------------------------------------------------------------- // namespace System.CodeDom { using System; using System.Collections; using System.Runtime.InteropServices; ////// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeAttributeDeclarationCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeAttributeDeclarationCollection() { } ////// Initializes a new instance of ///. /// /// public CodeAttributeDeclarationCollection(CodeAttributeDeclarationCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeAttributeDeclarationCollection(CodeAttributeDeclaration[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeAttributeDeclaration this[int index] { get { return ((CodeAttributeDeclaration)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeAttributeDeclaration value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeAttributeDeclaration[] 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(CodeAttributeDeclarationCollection 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(CodeAttributeDeclaration value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeAttributeDeclaration[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeAttributeDeclaration value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeAttributeDeclaration value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeAttributeDeclaration 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
- UserNameSecurityTokenParameters.cs
- HttpsChannelFactory.cs
- QueryMath.cs
- AdapterDictionary.cs
- NewItemsContextMenuStrip.cs
- sqlstateclientmanager.cs
- NotifyInputEventArgs.cs
- CharacterMetricsDictionary.cs
- XmlMemberMapping.cs
- ByValueEqualityComparer.cs
- EncoderParameters.cs
- PriorityBinding.cs
- CodeSnippetCompileUnit.cs
- PackWebRequest.cs
- Line.cs
- ReadContentAsBinaryHelper.cs
- SessionEndingEventArgs.cs
- X509ChainPolicy.cs
- ProgressBar.cs
- UInt16Storage.cs
- ImageButton.cs
- StylusSystemGestureEventArgs.cs
- DispatcherExceptionEventArgs.cs
- FilterEventArgs.cs
- NumericUpDownAcceleration.cs
- DataGridViewDataConnection.cs
- Animatable.cs
- HtmlTableCell.cs
- ExtendedProtectionPolicy.cs
- SetIterators.cs
- DateTimeStorage.cs
- CannotUnloadAppDomainException.cs
- documentsequencetextview.cs
- ExecutionContext.cs
- IdentityReference.cs
- DbgUtil.cs
- GZipDecoder.cs
- ConditionalWeakTable.cs
- AspNetSynchronizationContext.cs
- EventLog.cs
- XmlSerializer.cs
- ToolStripDropDownMenu.cs
- _SingleItemRequestCache.cs
- WriteableBitmap.cs
- NameValueCollection.cs
- HttpListenerException.cs
- CodeParameterDeclarationExpressionCollection.cs
- XPathDocumentBuilder.cs
- WindowsPrincipal.cs
- DBPropSet.cs
- DataSourceHelper.cs
- StringConverter.cs
- TakeQueryOptionExpression.cs
- WebResourceUtil.cs
- CommandHelper.cs
- ProxyFragment.cs
- CollectionContainer.cs
- ResourceAssociationSetEnd.cs
- ToolStripRenderEventArgs.cs
- MatrixTransform3D.cs
- ObjectItemNoOpAssemblyLoader.cs
- DbParameterCollectionHelper.cs
- CatalogPartCollection.cs
- InspectionWorker.cs
- DateTimeHelper.cs
- Utility.cs
- RNGCryptoServiceProvider.cs
- BackgroundWorker.cs
- XmlUtf8RawTextWriter.cs
- DrawingAttributeSerializer.cs
- DataRowComparer.cs
- AddressingVersion.cs
- PropertyDescriptorComparer.cs
- GroupBoxRenderer.cs
- XmlTextReaderImplHelpers.cs
- CustomAttributeBuilder.cs
- ColumnMapTranslator.cs
- ChtmlCommandAdapter.cs
- CryptoStream.cs
- VectorCollection.cs
- View.cs
- TabPanel.cs
- Pen.cs
- SequenceNumber.cs
- ClrPerspective.cs
- FillRuleValidation.cs
- ChtmlSelectionListAdapter.cs
- OletxTransactionHeader.cs
- TableLayoutCellPaintEventArgs.cs
- ObjectDataSourceFilteringEventArgs.cs
- XNameTypeConverter.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- DataServiceKeyAttribute.cs
- streamingZipPartStream.cs
- PhotoPrintingIntent.cs
- EntityDataSource.cs
- XmlProcessingInstruction.cs
- NonParentingControl.cs
- RawStylusSystemGestureInputReport.cs
- RuntimeHandles.cs