Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ // // // //----------------------------------------------------------------------------- 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
- BooleanProjectedSlot.cs
- WeakRefEnumerator.cs
- CodeBinaryOperatorExpression.cs
- TextFormatterContext.cs
- TablePattern.cs
- AppDomainProtocolHandler.cs
- WmlLinkAdapter.cs
- RegexWorker.cs
- TableStyle.cs
- RSAPKCS1KeyExchangeFormatter.cs
- PropertyValidationContext.cs
- URLMembershipCondition.cs
- NullRuntimeConfig.cs
- InvalidComObjectException.cs
- CodeSubDirectory.cs
- _FtpDataStream.cs
- XmlDataSource.cs
- NativeWindow.cs
- DataGridViewCellMouseEventArgs.cs
- TdsParserSessionPool.cs
- Double.cs
- NameValueSectionHandler.cs
- DropShadowBitmapEffect.cs
- HashRepartitionStream.cs
- CustomTypeDescriptor.cs
- AccessDataSourceView.cs
- FormsAuthenticationEventArgs.cs
- ExplicitDiscriminatorMap.cs
- Trace.cs
- BitmapSource.cs
- Bitmap.cs
- SHA384Managed.cs
- IncrementalCompileAnalyzer.cs
- MediaScriptCommandRoutedEventArgs.cs
- DispatcherFrame.cs
- ParameterBuilder.cs
- CursorEditor.cs
- Pen.cs
- OracleString.cs
- ExtentKey.cs
- AuthStoreRoleProvider.cs
- AppliedDeviceFiltersDialog.cs
- MouseBinding.cs
- WindowsTokenRoleProvider.cs
- OleDbRowUpdatingEvent.cs
- AssertFilter.cs
- TaiwanLunisolarCalendar.cs
- DataGridTextBox.cs
- WebServiceTypeData.cs
- ColumnResizeUndoUnit.cs
- X509Certificate2Collection.cs
- ScrollBar.cs
- HttpVersion.cs
- OutputBuffer.cs
- LocatorManager.cs
- Scheduling.cs
- WebPartMovingEventArgs.cs
- ElementHost.cs
- CompModSwitches.cs
- ResponseBodyWriter.cs
- PointKeyFrameCollection.cs
- IndicFontClient.cs
- XmlBindingWorker.cs
- ExtensionQuery.cs
- PasswordBoxAutomationPeer.cs
- OutputCacheProfileCollection.cs
- LineServicesCallbacks.cs
- SafeHandles.cs
- PackWebResponse.cs
- ReturnEventArgs.cs
- ObjectPersistData.cs
- NamedObjectList.cs
- GenericTransactionFlowAttribute.cs
- Command.cs
- TaskHelper.cs
- CodeTypeDeclaration.cs
- RowBinding.cs
- MarshalByValueComponent.cs
- MatrixTransform.cs
- Stacktrace.cs
- DataGridViewButtonCell.cs
- CompensationExtension.cs
- ThicknessAnimationBase.cs
- TimeStampChecker.cs
- CallContext.cs
- FormatSettings.cs
- TraceEventCache.cs
- OleDbReferenceCollection.cs
- ProcessHostFactoryHelper.cs
- XPathMultyIterator.cs
- TypeForwardedFromAttribute.cs
- MetadataItem.cs
- ProxyWebPartManager.cs
- CodeStatementCollection.cs
- DataService.cs
- CompiledQueryCacheKey.cs
- SelectionHighlightInfo.cs
- TextSearch.cs
- CFStream.cs
- EnumerableRowCollectionExtensions.cs