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
- CalendarButtonAutomationPeer.cs
- WebZone.cs
- MembershipAdapter.cs
- SessionStateContainer.cs
- LinkButton.cs
- StrokeCollection.cs
- InvokePatternIdentifiers.cs
- ButtonPopupAdapter.cs
- __Filters.cs
- SmiGettersStream.cs
- FileLevelControlBuilderAttribute.cs
- LateBoundBitmapDecoder.cs
- HostProtectionPermission.cs
- WaitHandleCannotBeOpenedException.cs
- WriteStateInfoBase.cs
- ProcessManager.cs
- CodeVariableReferenceExpression.cs
- PackagePartCollection.cs
- RequestCacheManager.cs
- SoapServerMessage.cs
- Marshal.cs
- TextFindEngine.cs
- MobilePage.cs
- TypedReference.cs
- SoapIncludeAttribute.cs
- SurrogateChar.cs
- CssStyleCollection.cs
- XmlReader.cs
- ToolStripPanelCell.cs
- NotifyInputEventArgs.cs
- DataContractSerializerSection.cs
- JavascriptCallbackBehaviorAttribute.cs
- RequestQueue.cs
- SrgsDocument.cs
- LinkArea.cs
- SwitchAttribute.cs
- DtrList.cs
- ListParaClient.cs
- ValueChangedEventManager.cs
- DataViewSetting.cs
- RenderContext.cs
- GlyphsSerializer.cs
- RequiredAttributeAttribute.cs
- HashCodeCombiner.cs
- DataServiceException.cs
- SQLInt32Storage.cs
- StreamReader.cs
- BrowsableAttribute.cs
- DynamicILGenerator.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- OLEDB_Util.cs
- AuthenticationManager.cs
- EnvironmentPermission.cs
- StrongNameIdentityPermission.cs
- FormParameter.cs
- TypeResolver.cs
- ScriptModule.cs
- SimpleTypeResolver.cs
- ArrangedElement.cs
- smtpconnection.cs
- HostProtectionException.cs
- TaskScheduler.cs
- TimelineGroup.cs
- ExpressionSelection.cs
- CodeDOMUtility.cs
- PointHitTestResult.cs
- MachineKeyConverter.cs
- PreviewPageInfo.cs
- OperatingSystem.cs
- ColumnBinding.cs
- ArrayList.cs
- Clause.cs
- MeasureData.cs
- ClientOptions.cs
- Command.cs
- OverloadGroupAttribute.cs
- ListViewGroup.cs
- EqualityComparer.cs
- RowType.cs
- RunClient.cs
- MatrixUtil.cs
- Set.cs
- AlignmentXValidation.cs
- IisTraceListener.cs
- PermissionSetEnumerator.cs
- Ops.cs
- DoubleAnimationClockResource.cs
- DataKeyCollection.cs
- HttpListenerElement.cs
- EnumValAlphaComparer.cs
- SqlConnectionHelper.cs
- ProjectionQueryOptionExpression.cs
- ContentFilePart.cs
- CodePrimitiveExpression.cs
- PropertyValueUIItem.cs
- ProxySimple.cs
- SessionSwitchEventArgs.cs
- StylusEventArgs.cs
- ReliableMessagingHelpers.cs
- Error.cs