Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- WindowsToolbarAsMenu.cs
- Semaphore.cs
- KeyEvent.cs
- Int32CollectionValueSerializer.cs
- GroupBox.cs
- FileUtil.cs
- FixedPageStructure.cs
- IPAddress.cs
- WebPartMovingEventArgs.cs
- TraceHandlerErrorFormatter.cs
- ServiceEndpoint.cs
- RuleSettings.cs
- CurrencyWrapper.cs
- SamlAuthenticationClaimResource.cs
- CompModSwitches.cs
- HwndTarget.cs
- XamlStream.cs
- EntityConnection.cs
- ResourcePermissionBaseEntry.cs
- MSHTMLHost.cs
- NameValueSectionHandler.cs
- PackageDigitalSignatureManager.cs
- QilScopedVisitor.cs
- TreeViewImageKeyConverter.cs
- TextStore.cs
- TypeSystem.cs
- VersionedStreamOwner.cs
- GridViewUpdatedEventArgs.cs
- ValueExpressions.cs
- ValuePatternIdentifiers.cs
- SourceItem.cs
- TextProperties.cs
- RevocationPoint.cs
- FileDialogCustomPlacesCollection.cs
- AdapterDictionary.cs
- MiniParameterInfo.cs
- MappingException.cs
- BitmapEffectInput.cs
- Int32Collection.cs
- DuplexClientBase.cs
- DataServiceResponse.cs
- Image.cs
- HelpEvent.cs
- SemaphoreSecurity.cs
- EncoderNLS.cs
- ProfessionalColorTable.cs
- Font.cs
- DragCompletedEventArgs.cs
- COM2ExtendedBrowsingHandler.cs
- ServiceHost.cs
- TrimSurroundingWhitespaceAttribute.cs
- MbpInfo.cs
- RowBinding.cs
- HelpInfo.cs
- ProxyWebPartManager.cs
- AsyncResult.cs
- MailWebEventProvider.cs
- ContainerControlDesigner.cs
- TextRenderer.cs
- TargetParameterCountException.cs
- FontNamesConverter.cs
- ResourceDictionary.cs
- StorageInfo.cs
- FontCacheUtil.cs
- NavigationEventArgs.cs
- StylusTouchDevice.cs
- ModelTreeEnumerator.cs
- TextBoxDesigner.cs
- ResXResourceSet.cs
- InternalSafeNativeMethods.cs
- _NativeSSPI.cs
- DataListItemEventArgs.cs
- FileStream.cs
- ActivityCollectionMarkupSerializer.cs
- CursorInteropHelper.cs
- ConfigurationErrorsException.cs
- FunctionImportMapping.ReturnTypeRenameMapping.cs
- SQLBytesStorage.cs
- BasePattern.cs
- EraserBehavior.cs
- DiscardableAttribute.cs
- ProcessModelInfo.cs
- Queue.cs
- PageSetupDialog.cs
- Random.cs
- ColumnReorderedEventArgs.cs
- DBSqlParserTableCollection.cs
- Floater.cs
- IProvider.cs
- CodeDelegateCreateExpression.cs
- AxParameterData.cs
- EllipticalNodeOperations.cs
- FocusWithinProperty.cs
- RootProfilePropertySettingsCollection.cs
- DurableServiceAttribute.cs
- ControlBuilderAttribute.cs
- BitmapEffectInput.cs
- ELinqQueryState.cs
- WindowManager.cs
- AudioException.cs