Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / CodeDOM / CodeNamespaceImportCollection.cs / 1 / CodeNamespaceImportCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using System.Collections; using System.Runtime.InteropServices; using System.Globalization; ////// [ 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. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using System.Collections; using System.Runtime.InteropServices; using System.Globalization; ////// [ 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
- SessionStateUtil.cs
- MonikerHelper.cs
- TheQuery.cs
- PageStatePersister.cs
- InputLanguageCollection.cs
- StringInfo.cs
- DelegatingConfigHost.cs
- DateTimeUtil.cs
- Point.cs
- MiniCustomAttributeInfo.cs
- BStrWrapper.cs
- FieldNameLookup.cs
- HotSpotCollection.cs
- StorageSetMapping.cs
- TreeViewCancelEvent.cs
- RelationshipManager.cs
- ZoneIdentityPermission.cs
- ConsumerConnectionPoint.cs
- StoreItemCollection.cs
- ModelUtilities.cs
- MenuAutoFormat.cs
- ProviderBase.cs
- ParserHooks.cs
- XhtmlBasicCalendarAdapter.cs
- _DisconnectOverlappedAsyncResult.cs
- EntityConnectionStringBuilderItem.cs
- WebPartManagerInternals.cs
- FamilyTypefaceCollection.cs
- PropertiesTab.cs
- EncoderParameter.cs
- OverlappedAsyncResult.cs
- RedirectionProxy.cs
- ElementNotEnabledException.cs
- Assembly.cs
- CacheAxisQuery.cs
- ViewManagerAttribute.cs
- CurrentTimeZone.cs
- AuthenticationManager.cs
- Decorator.cs
- hebrewshape.cs
- DataDesignUtil.cs
- ListGeneralPage.cs
- AsyncCompletedEventArgs.cs
- CounterSampleCalculator.cs
- DataRecordInternal.cs
- ItemContainerGenerator.cs
- CompressionTransform.cs
- TrayIconDesigner.cs
- CAGDesigner.cs
- PropertyTabChangedEvent.cs
- ProcessManager.cs
- SectionInformation.cs
- IntSecurity.cs
- QuaternionAnimation.cs
- SafeFileMapViewHandle.cs
- ProviderUtil.cs
- ReflectionHelper.cs
- AjaxFrameworkAssemblyAttribute.cs
- ColorDialog.cs
- GridViewDeletedEventArgs.cs
- HMACSHA384.cs
- RawStylusInputReport.cs
- HeaderFilter.cs
- ConfigurationElementProperty.cs
- ExternalException.cs
- PeerInvitationResponse.cs
- TransactedBatchContext.cs
- HtmlHead.cs
- ScrollItemProviderWrapper.cs
- ACL.cs
- ViewKeyConstraint.cs
- CssClassPropertyAttribute.cs
- ColumnClickEvent.cs
- CacheMode.cs
- VScrollBar.cs
- StaticResourceExtension.cs
- ViewLoader.cs
- XamlSerializer.cs
- ITreeGenerator.cs
- XmlSchemaProviderAttribute.cs
- XNodeValidator.cs
- DataGridItem.cs
- ToolStripDropDownButton.cs
- FixedDSBuilder.cs
- CatalogZoneBase.cs
- TraceRecord.cs
- AdPostCacheSubstitution.cs
- Rectangle.cs
- CreateInstanceBinder.cs
- MobileCapabilities.cs
- Emitter.cs
- PageSetupDialog.cs
- ImageConverter.cs
- ObjectConverter.cs
- DispatcherSynchronizationContext.cs
- PropertyRef.cs
- DataTableReader.cs
- TableRow.cs
- StaticContext.cs
- ChangeProcessor.cs