Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeNamespaceImportCollection.cs / 1305376 / CodeNamespaceImportCollection.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using System.Collections; using System.Runtime.InteropServices; using System.Globalization; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeNamespaceImportCollection : IList { private ArrayList data = new ArrayList(); private Hashtable keys = new Hashtable(StringComparer.OrdinalIgnoreCase); ////// Manages a collection of ///objects. /// /// public CodeNamespaceImport this[int index] { get { return ((CodeNamespaceImport)data[index]); } set { data[index] = value; SyncKeys(); } } ////// Indexer method that provides collection access. /// ////// public int Count { get { return data.Count; } } ////// Gets or sets the number of namespaces in the collection. /// ///bool IList.IsReadOnly { get { return false; } } /// bool IList.IsFixedSize { get { return false; } } /// /// public void Add(CodeNamespaceImport value) { if (!keys.ContainsKey(value.Namespace)) { keys[value.Namespace] = value; data.Add(value); } } ////// Adds a namespace import to the collection. /// ////// public void AddRange(CodeNamespaceImport[] value) { if (value == null) { throw new ArgumentNullException("value"); } foreach (CodeNamespaceImport c in value) { Add(c); } } ////// Adds a set of ///objects to the collection. /// /// public void Clear() { data.Clear(); keys.Clear(); } ////// Clears the collection of members. /// ////// private void SyncKeys() { keys = new Hashtable(StringComparer.OrdinalIgnoreCase); foreach(CodeNamespaceImport c in this) { keys[c.Namespace] = c; } } ////// Makes the collection of keys synchronised with the data. /// ////// public IEnumerator GetEnumerator() { return data.GetEnumerator(); } ////// Gets an enumerator that enumerates the collection members. /// ///object IList.this[int index] { get { return this[index]; } set { this[index] = (CodeNamespaceImport)value; SyncKeys(); } } /// int ICollection.Count { get { return Count; } } /// bool ICollection.IsSynchronized { get { return false; } } /// object ICollection.SyncRoot { get { return null; } } /// void ICollection.CopyTo(Array array, int index) { data.CopyTo(array, index); } /// IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } /// int IList.Add(object value) { return data.Add((CodeNamespaceImport)value); } /// void IList.Clear() { Clear(); } /// bool IList.Contains(object value) { return data.Contains(value); } /// int IList.IndexOf(object value) { return data.IndexOf((CodeNamespaceImport)value); } /// void IList.Insert(int index, object value) { data.Insert(index, (CodeNamespaceImport)value); SyncKeys(); } /// void IList.Remove(object value) { data.Remove((CodeNamespaceImport)value); SyncKeys(); } /// void IList.RemoveAt(int index) { data.RemoveAt(index); SyncKeys(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AxisAngleRotation3D.cs
- FormsAuthenticationUserCollection.cs
- TaskbarItemInfo.cs
- QueryModel.cs
- DiscoveryOperationContext.cs
- SafeMemoryMappedFileHandle.cs
- StopStoryboard.cs
- Number.cs
- CodeStatement.cs
- SmiXetterAccessMap.cs
- StyleSelector.cs
- AutomationIdentifier.cs
- ScriptManager.cs
- WebPartVerbsEventArgs.cs
- SymmetricKeyWrap.cs
- UnaryNode.cs
- OleDbStruct.cs
- TextSelectionHelper.cs
- ResourceDescriptionAttribute.cs
- LeaseManager.cs
- ToolBarPanel.cs
- PolicyStatement.cs
- NotifyParentPropertyAttribute.cs
- RepeatButton.cs
- externdll.cs
- EventLog.cs
- DelegatingTypeDescriptionProvider.cs
- NavigatingCancelEventArgs.cs
- ResourcePermissionBase.cs
- CaseStatement.cs
- KerberosTicketHashIdentifierClause.cs
- IMembershipProvider.cs
- WSSecurityOneDotZeroReceiveSecurityHeader.cs
- InputScope.cs
- TypeDependencyAttribute.cs
- ServiceReflector.cs
- TreeNodeEventArgs.cs
- OleDbTransaction.cs
- DataGridSortCommandEventArgs.cs
- OnOperation.cs
- EventBindingService.cs
- DebugView.cs
- FirstMatchCodeGroup.cs
- FragmentNavigationEventArgs.cs
- ProviderConnectionPointCollection.cs
- Model3D.cs
- AssociationProvider.cs
- CheckBox.cs
- SamlSecurityToken.cs
- RC2.cs
- ConnectionConsumerAttribute.cs
- DrawingBrush.cs
- JsonWriter.cs
- DataListDesigner.cs
- XpsSerializationManagerAsync.cs
- FixedPageProcessor.cs
- MessageBox.cs
- RelationshipManager.cs
- Property.cs
- ObjectStateManager.cs
- WindowsEditBoxRange.cs
- WebPageTraceListener.cs
- ReadOnlyDictionary.cs
- EmptyStringExpandableObjectConverter.cs
- AnnotationResource.cs
- DataKeyCollection.cs
- PreProcessInputEventArgs.cs
- GroupBox.cs
- ObjectCloneHelper.cs
- FixedSOMTextRun.cs
- ApplySecurityAndSendAsyncResult.cs
- ToolStripSplitStackLayout.cs
- PasswordPropertyTextAttribute.cs
- Debug.cs
- MergeFilterQuery.cs
- XmlProcessingInstruction.cs
- BasicViewGenerator.cs
- SignedInfo.cs
- X509ChainPolicy.cs
- DbConnectionPoolIdentity.cs
- PerformanceCounter.cs
- GC.cs
- RtfToXamlReader.cs
- AndCondition.cs
- SmtpDateTime.cs
- Object.cs
- EventSinkActivity.cs
- TokenBasedSetEnumerator.cs
- ImageKeyConverter.cs
- ImpersonationOption.cs
- PackageStore.cs
- MatrixAnimationUsingKeyFrames.cs
- HtmlControl.cs
- OverflowException.cs
- SystemColors.cs
- CodeDomLocalizationProvider.cs
- RijndaelCryptoServiceProvider.cs
- ConnectionStringsExpressionBuilder.cs
- InternalRelationshipCollection.cs
- EntitySetRetriever.cs