Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- TogglePattern.cs
- TypedReference.cs
- RowType.cs
- ColorMatrix.cs
- SafeBitVector32.cs
- DesignerDataConnection.cs
- DesignBindingEditor.cs
- RemoteWebConfigurationHost.cs
- _ConnectionGroup.cs
- DateTimeHelper.cs
- DefaultAutoFieldGenerator.cs
- CompositeControl.cs
- DropTarget.cs
- WinFormsSecurity.cs
- OleAutBinder.cs
- BindingContext.cs
- BaseDataList.cs
- ConfigXmlSignificantWhitespace.cs
- CodeNamespaceImportCollection.cs
- DefaultValidator.cs
- EventBuilder.cs
- CompositeFontFamily.cs
- Token.cs
- PersonalizablePropertyEntry.cs
- ClientApiGenerator.cs
- XsdCachingReader.cs
- TouchFrameEventArgs.cs
- DecoderNLS.cs
- ToolTipAutomationPeer.cs
- SizeChangedInfo.cs
- Number.cs
- CompilerTypeWithParams.cs
- AsymmetricCryptoHandle.cs
- PlainXmlSerializer.cs
- LinqDataSourceDeleteEventArgs.cs
- COSERVERINFO.cs
- SubMenuStyle.cs
- PrintDialogDesigner.cs
- MimeFormReflector.cs
- ScriptHandlerFactory.cs
- FloatUtil.cs
- AtlasWeb.Designer.cs
- WeakReferenceList.cs
- VisualStateGroup.cs
- typedescriptorpermission.cs
- GeneralTransform3D.cs
- CqlQuery.cs
- AssemblyNameEqualityComparer.cs
- HttpServerUtilityWrapper.cs
- OleDbWrapper.cs
- XmlName.cs
- EdmScalarPropertyAttribute.cs
- IncrementalReadDecoders.cs
- TraceInternal.cs
- SqlDataSourceQueryConverter.cs
- StringUtil.cs
- ObsoleteAttribute.cs
- FormViewInsertedEventArgs.cs
- AssemblyInfo.cs
- TextContainerHelper.cs
- ProcessModule.cs
- RandomNumberGenerator.cs
- ScriptComponentDescriptor.cs
- SchemeSettingElement.cs
- ProgressBar.cs
- SynchronizationLockException.cs
- XMLDiffLoader.cs
- ValidationRuleCollection.cs
- CustomSignedXml.cs
- SpStreamWrapper.cs
- _NTAuthentication.cs
- OleDbCommand.cs
- FormViewInsertedEventArgs.cs
- ScrollContentPresenter.cs
- OneOfTypeConst.cs
- StringBlob.cs
- BindingNavigator.cs
- HoistedLocals.cs
- DataViewListener.cs
- ToolStripMenuItem.cs
- EpmAttributeNameBuilder.cs
- MTConfigUtil.cs
- FigureParaClient.cs
- SqlCommandBuilder.cs
- SAPICategories.cs
- OutputBuffer.cs
- WebPartEventArgs.cs
- PackagePartCollection.cs
- SecureUICommand.cs
- _ListenerResponseStream.cs
- Thickness.cs
- StandardOleMarshalObject.cs
- CompositeActivityMarkupSerializer.cs
- Currency.cs
- OleDbPropertySetGuid.cs
- AutoResizedEvent.cs
- ObjectDataSourceFilteringEventArgs.cs
- GregorianCalendarHelper.cs
- UITypeEditor.cs
- ContextMenuStripActionList.cs