Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeTypeMemberCollection.cs / 1 / CodeTypeMemberCollection.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 CodeTypeMemberCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeTypeMemberCollection() { } ////// Initializes a new instance of ///. /// /// public CodeTypeMemberCollection(CodeTypeMemberCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeTypeMemberCollection(CodeTypeMember[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeTypeMember this[int index] { get { return ((CodeTypeMember)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeTypeMember value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeTypeMember[] 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(CodeTypeMemberCollection 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(CodeTypeMember value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeTypeMember[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeTypeMember value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeTypeMember value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeTypeMember value) { List.Remove(value); } } }Removes a specific ///from the /// .
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DPCustomTypeDescriptor.cs
- DynamicHyperLink.cs
- DataBoundControlDesigner.cs
- CacheVirtualItemsEvent.cs
- PingReply.cs
- ConstNode.cs
- ConstructorBuilder.cs
- PrefixHandle.cs
- SelectQueryOperator.cs
- CounterSetInstance.cs
- EmptyStringExpandableObjectConverter.cs
- DocumentPageHost.cs
- XmlChildNodes.cs
- Msec.cs
- AssemblyCollection.cs
- FileCodeGroup.cs
- TimeoutValidationAttribute.cs
- AssemblyResourceLoader.cs
- SBCSCodePageEncoding.cs
- DynamicEndpoint.cs
- KeyboardEventArgs.cs
- DiscreteKeyFrames.cs
- Image.cs
- WebEvents.cs
- SystemFonts.cs
- GridViewAutomationPeer.cs
- WorkflowViewManager.cs
- ExtendLockAsyncResult.cs
- TableLayoutSettings.cs
- RepeaterDesigner.cs
- BamlRecords.cs
- GradientBrush.cs
- CollectionEditorDialog.cs
- Image.cs
- SchemaNotation.cs
- IntAverageAggregationOperator.cs
- GeneralTransformGroup.cs
- RemoteX509AsymmetricSecurityKey.cs
- SettingsPropertyWrongTypeException.cs
- FormatConvertedBitmap.cs
- ConfigUtil.cs
- OutputScopeManager.cs
- HttpModule.cs
- LostFocusEventManager.cs
- UnsafeNativeMethods.cs
- ComboBoxRenderer.cs
- UIElementParagraph.cs
- ObjectTag.cs
- basenumberconverter.cs
- AutoGeneratedField.cs
- Shape.cs
- DragEventArgs.cs
- QuaternionIndependentAnimationStorage.cs
- BuildManagerHost.cs
- FormatSettings.cs
- PageBuildProvider.cs
- QilStrConcat.cs
- RegexWriter.cs
- StrokeFIndices.cs
- PathSegment.cs
- WindowShowOrOpenTracker.cs
- Visual3D.cs
- SizeConverter.cs
- BinaryMessageFormatter.cs
- GetPageNumberCompletedEventArgs.cs
- XsltInput.cs
- PrintPreviewGraphics.cs
- CodeTypeReferenceExpression.cs
- NonBatchDirectoryCompiler.cs
- DecoderNLS.cs
- ChooseAction.cs
- EntityDataSourceStatementEditorForm.cs
- ArrayList.cs
- XpsS0ValidatingLoader.cs
- HostAdapter.cs
- NamespaceTable.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- UidManager.cs
- IteratorFilter.cs
- GraphicsContainer.cs
- DemultiplexingDispatchMessageFormatter.cs
- HwndAppCommandInputProvider.cs
- MetadataArtifactLoaderComposite.cs
- Constants.cs
- SqlGatherConsumedAliases.cs
- MessageParameterAttribute.cs
- ListControl.cs
- WhileDesigner.cs
- CapabilitiesRule.cs
- SystemUnicastIPAddressInformation.cs
- SymmetricAlgorithm.cs
- ControlCachePolicy.cs
- DropShadowEffect.cs
- TimeSpanConverter.cs
- ItemsControl.cs
- storepermission.cs
- MiniCustomAttributeInfo.cs
- PasswordRecovery.cs
- ValueType.cs
- NetMsmqSecurityMode.cs