Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeAttributeArgumentCollection.cs / 1305376 / CodeAttributeArgumentCollection.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 CodeAttributeArgumentCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeAttributeArgumentCollection() { } ////// Initializes a new instance of ///. /// /// public CodeAttributeArgumentCollection(CodeAttributeArgumentCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeAttributeArgumentCollection(CodeAttributeArgument[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeAttributeArgument this[int index] { get { return ((CodeAttributeArgument)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeAttributeArgument value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeAttributeArgument[] 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(CodeAttributeArgumentCollection 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(CodeAttributeArgument value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeAttributeArgument[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeAttributeArgument value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeAttributeArgument value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeAttributeArgument 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 CodeAttributeArgumentCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeAttributeArgumentCollection() { } ////// Initializes a new instance of ///. /// /// public CodeAttributeArgumentCollection(CodeAttributeArgumentCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeAttributeArgumentCollection(CodeAttributeArgument[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeAttributeArgument this[int index] { get { return ((CodeAttributeArgument)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeAttributeArgument value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeAttributeArgument[] 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(CodeAttributeArgumentCollection 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(CodeAttributeArgument value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeAttributeArgument[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeAttributeArgument value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeAttributeArgument value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeAttributeArgument 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
- ConfigurationValues.cs
- CodeLinePragma.cs
- SiteMapNodeCollection.cs
- TouchEventArgs.cs
- RemoteX509AsymmetricSecurityKey.cs
- InvalidOleVariantTypeException.cs
- ClipboardProcessor.cs
- SystemIPGlobalProperties.cs
- ContextActivityUtils.cs
- ViewStateModeByIdAttribute.cs
- DataFormats.cs
- RequestQueue.cs
- BinaryReader.cs
- CompiledXpathExpr.cs
- ClientRoleProvider.cs
- CodeMethodInvokeExpression.cs
- ToolBarPanel.cs
- LinqDataSourceDisposeEventArgs.cs
- PageAdapter.cs
- ColumnMapVisitor.cs
- CollectionDataContractAttribute.cs
- NativeMethods.cs
- MainMenu.cs
- SizeIndependentAnimationStorage.cs
- SynchronizationValidator.cs
- QueueProcessor.cs
- TreeBuilderBamlTranslator.cs
- CancelEventArgs.cs
- CommandHelpers.cs
- StylusButtonEventArgs.cs
- CryptoApi.cs
- ReliableSessionBindingElementImporter.cs
- DockAndAnchorLayout.cs
- SelectedCellsCollection.cs
- AdapterDictionary.cs
- LoginAutoFormat.cs
- XmlConvert.cs
- CheckBoxRenderer.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- ArrayTypeMismatchException.cs
- NegotiationTokenAuthenticatorState.cs
- PageAsyncTaskManager.cs
- EditorOptionAttribute.cs
- TableLayoutSettings.cs
- Closure.cs
- SoapDocumentMethodAttribute.cs
- HMACRIPEMD160.cs
- RepeaterItemCollection.cs
- UpdatePanelTrigger.cs
- DispatcherHookEventArgs.cs
- DataGridViewColumnCollection.cs
- TextPatternIdentifiers.cs
- Function.cs
- Lasso.cs
- CachedRequestParams.cs
- UITypeEditor.cs
- DictionaryContent.cs
- XdrBuilder.cs
- AmbientProperties.cs
- StringAttributeCollection.cs
- SecurityCriticalDataForSet.cs
- TemplateEditingService.cs
- TableItemStyle.cs
- CodeParameterDeclarationExpression.cs
- EndpointAddress.cs
- StateBag.cs
- CustomValidator.cs
- WindowsNonControl.cs
- DBCommandBuilder.cs
- BlurBitmapEffect.cs
- TreeNode.cs
- PageSettings.cs
- SingleTagSectionHandler.cs
- DesignerSerializationManager.cs
- CodeCatchClauseCollection.cs
- SmiEventStream.cs
- WindowsGraphicsWrapper.cs
- WebPartAddingEventArgs.cs
- StorageFunctionMapping.cs
- WriteStateInfoBase.cs
- Assert.cs
- TextRange.cs
- LinkedResourceCollection.cs
- CustomBindingCollectionElement.cs
- InvokeHandlers.cs
- DeflateStream.cs
- GetReadStreamResult.cs
- ProviderSettingsCollection.cs
- PasswordBoxAutomationPeer.cs
- HtmlCommandAdapter.cs
- Row.cs
- FilePrompt.cs
- RelatedPropertyManager.cs
- StorageModelBuildProvider.cs
- Popup.cs
- HostingPreferredMapPath.cs
- LoginUtil.cs
- Button.cs
- XmlKeywords.cs
- OrderedDictionaryStateHelper.cs