Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / CodeDOM / CodeNamespaceCollection.cs / 1 / CodeNamespaceCollection.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 CodeNamespaceCollection : CollectionBase { ////// A collection that stores ///objects. /// /// public CodeNamespaceCollection() { } ////// Initializes a new instance of ///. /// /// public CodeNamespaceCollection(CodeNamespaceCollection value) { this.AddRange(value); } ////// Initializes a new instance of ///based on another . /// /// public CodeNamespaceCollection(CodeNamespace[] value) { this.AddRange(value); } ////// Initializes a new instance of ///containing any array of objects. /// /// public CodeNamespace this[int index] { get { return ((CodeNamespace)(List[index])); } set { List[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Add(CodeNamespace value) { return List.Add(value); } ///Adds a ///with the specified value to the /// . /// public void AddRange(CodeNamespace[] 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(CodeNamespaceCollection 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(CodeNamespace value) { return List.Contains(value); } ///Gets a value indicating whether the /// ///contains the specified . /// public void CopyTo(CodeNamespace[] array, int index) { List.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public int IndexOf(CodeNamespace value) { return List.IndexOf(value); } ///Returns the index of a ///in /// the . /// public void Insert(int index, CodeNamespace value) { List.Insert(index, value); } ///Inserts a ///into the at the specified index. /// public void Remove(CodeNamespace 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
- _UriSyntax.cs
- TypeDelegator.cs
- SqlProvider.cs
- Calendar.cs
- UnsafeNativeMethodsMilCoreApi.cs
- TextElementCollectionHelper.cs
- ScriptResourceInfo.cs
- securestring.cs
- _IPv4Address.cs
- SqlDataSourceView.cs
- SetterBase.cs
- EntityCommand.cs
- SoapCodeExporter.cs
- PriorityQueue.cs
- RequestQueryProcessor.cs
- CreateUserWizard.cs
- PlatformCulture.cs
- TimeoutValidationAttribute.cs
- Win32.cs
- PolicyValidationException.cs
- Font.cs
- ActionFrame.cs
- CompositeCollectionView.cs
- SettingsPropertyNotFoundException.cs
- PageParserFilter.cs
- ValidationRuleCollection.cs
- securestring.cs
- ExceptionRoutedEventArgs.cs
- FacetValueContainer.cs
- ConfigurationSectionGroupCollection.cs
- WithParamAction.cs
- mediaclock.cs
- TraceFilter.cs
- LiteralControl.cs
- SimpleWebHandlerParser.cs
- LinqTreeNodeEvaluator.cs
- WebPartTransformerCollection.cs
- PaperSize.cs
- PointF.cs
- FileSystemWatcher.cs
- WorkflowRuntime.cs
- MessageSecurityVersion.cs
- StickyNoteAnnotations.cs
- ServiceNameElementCollection.cs
- DesignerCategoryAttribute.cs
- RadioButton.cs
- PackageRelationship.cs
- MessageParameterAttribute.cs
- ResourceExpression.cs
- WebBrowser.cs
- EntityClassGenerator.cs
- OdbcError.cs
- WebPartHeaderCloseVerb.cs
- Token.cs
- RootBuilder.cs
- ModelFunction.cs
- HttpCookie.cs
- SQLBytes.cs
- WebServicesInteroperability.cs
- ExtendedProtectionPolicyTypeConverter.cs
- ListBindingHelper.cs
- DesignerLoader.cs
- Semaphore.cs
- XmlComplianceUtil.cs
- TypeValidationEventArgs.cs
- ResXDataNode.cs
- SimpleFieldTemplateFactory.cs
- UIntPtr.cs
- IssuanceLicense.cs
- PerformanceCounterLib.cs
- FormViewUpdateEventArgs.cs
- StorageEndPropertyMapping.cs
- ComPlusServiceLoader.cs
- PageAsyncTask.cs
- BindingList.cs
- ItemCollection.cs
- ImageMap.cs
- StackOverflowException.cs
- PageSetupDialog.cs
- HttpRequestWrapper.cs
- SqlDataSource.cs
- DesignerProperties.cs
- TextEditorCharacters.cs
- FilterEventArgs.cs
- HtmlControl.cs
- MouseButtonEventArgs.cs
- DodSequenceMerge.cs
- HwndHost.cs
- StyleBamlRecordReader.cs
- ComponentResourceKey.cs
- ProjectionCamera.cs
- TextLineBreak.cs
- EventMap.cs
- MatrixValueSerializer.cs
- Vector3D.cs
- KeySpline.cs
- ColorTransform.cs
- WebPartHelpVerb.cs
- PermissionRequestEvidence.cs
- SetIterators.cs