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
- CompositeScriptReferenceEventArgs.cs
- FixedBufferAttribute.cs
- ViewUtilities.cs
- Hashtable.cs
- MLangCodePageEncoding.cs
- UserNamePasswordValidator.cs
- PackageDigitalSignature.cs
- DescendantBaseQuery.cs
- UpdateCommandGenerator.cs
- DocumentCollection.cs
- ClientTargetSection.cs
- ThreadAbortException.cs
- StorageEntitySetMapping.cs
- FacetChecker.cs
- ActiveXSite.cs
- PartitionResolver.cs
- Int16Storage.cs
- AppliedDeviceFiltersEditor.cs
- FormCollection.cs
- SignedXml.cs
- LongTypeConverter.cs
- DoubleLinkListEnumerator.cs
- X509CertificateTokenFactoryCredential.cs
- BinaryNode.cs
- TreeNodeStyleCollectionEditor.cs
- MessageDecoder.cs
- ActivityTypeCodeDomSerializer.cs
- RuntimeEnvironment.cs
- DotAtomReader.cs
- ToolboxItem.cs
- TextParaLineResult.cs
- TableLayout.cs
- XmlImplementation.cs
- DataGridCaption.cs
- SizeConverter.cs
- GPRECT.cs
- BindingExpression.cs
- EntityConnectionStringBuilder.cs
- ListControl.cs
- StreamGeometryContext.cs
- BinaryUtilClasses.cs
- WindowsListViewItemCheckBox.cs
- APCustomTypeDescriptor.cs
- FormViewCommandEventArgs.cs
- EdmEntityTypeAttribute.cs
- BinaryUtilClasses.cs
- NavigationProgressEventArgs.cs
- SqlDataRecord.cs
- ContainerParaClient.cs
- ActivationArguments.cs
- COAUTHIDENTITY.cs
- DataGridViewSelectedCellCollection.cs
- XhtmlTextWriter.cs
- MachineSettingsSection.cs
- ToolStripDropDownClosingEventArgs.cs
- EncoderParameter.cs
- ClickablePoint.cs
- PartialTrustVisibleAssembliesSection.cs
- sqlmetadatafactory.cs
- ContainerSelectorActiveEvent.cs
- TabletCollection.cs
- OdbcRowUpdatingEvent.cs
- StringInfo.cs
- WindowsListViewItemStartMenu.cs
- QueryConverter.cs
- SqlDependencyUtils.cs
- XmlSchemaAnnotated.cs
- WebServiceParameterData.cs
- ComponentResourceKeyConverter.cs
- Stroke2.cs
- PointCollection.cs
- HttpBrowserCapabilitiesWrapper.cs
- XmlNodeComparer.cs
- InkCanvasAutomationPeer.cs
- ObjectViewFactory.cs
- OdbcConnectionPoolProviderInfo.cs
- Operand.cs
- ColorAnimationBase.cs
- ReflectPropertyDescriptor.cs
- NodeLabelEditEvent.cs
- EntryPointNotFoundException.cs
- RawUIStateInputReport.cs
- WsdlContractConversionContext.cs
- TransformGroup.cs
- OciLobLocator.cs
- ComplexType.cs
- GCHandleCookieTable.cs
- EndpointIdentityExtension.cs
- DetailsViewUpdateEventArgs.cs
- WebBrowser.cs
- GridViewRowCollection.cs
- IgnoreFlushAndCloseStream.cs
- Size3D.cs
- WebContentFormatHelper.cs
- LineMetrics.cs
- VisualStyleTypesAndProperties.cs
- TextBox.cs
- EdmComplexTypeAttribute.cs
- Component.cs
- ItemsChangedEventArgs.cs