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 / Collections / Specialized / StringCollection.cs / 1 / StringCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Collections.Specialized { using System.Diagnostics; using System.Collections; ////// [ Serializable, ] public class StringCollection : IList { private ArrayList data = new ArrayList(); ///Represents a collection of strings. ////// public string this[int index] { get { return ((string)data[index]); } set { data[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Count { get { return data.Count; } } bool IList.IsReadOnly { get { return false; } } bool IList.IsFixedSize { get { return false; } } ///Gets the number of strings in the /// ///. /// public int Add(string value) { return data.Add(value); } ///Adds a string with the specified value to the /// ///. /// public void AddRange(string[] value) { if (value == null) { throw new ArgumentNullException("value"); } data.AddRange(value); } ///Copies the elements of a string array to the end of the ///. /// public void Clear() { data.Clear(); } ///Removes all the strings from the /// ///. /// public bool Contains(string value) { return data.Contains(value); } ///Gets a value indicating whether the /// ///contains a string with the specified /// value. /// public void CopyTo(string[] array, int index) { data.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public StringEnumerator GetEnumerator() { return new StringEnumerator(this); } ///Returns an enumerator that can iterate through /// the ///. /// public int IndexOf(string value) { return data.IndexOf(value); } ///Returns the index of the first occurrence of a string in /// the ///. /// public void Insert(int index, string value) { data.Insert(index, value); } ///Inserts a string into the ///at the specified /// index. /// public bool IsReadOnly { get { return false; } } ///Gets a value indicating whether the ///is read-only. /// public bool IsSynchronized { get { return false; } } ///Gets a value indicating whether access to the /// ////// is synchronized (thread-safe). /// public void Remove(string value) { data.Remove(value); } ///Removes a specific string from the /// ///. /// public void RemoveAt(int index) { data.RemoveAt(index); } ///Removes the string at the specified index of the ///. /// public object SyncRoot { get { return data.SyncRoot; } } object IList.this[int index] { get { return this[index]; } set { this[index] = (string)value; } } int IList.Add(object value) { return Add((string)value); } bool IList.Contains(object value) { return Contains((string) value); } int IList.IndexOf(object value) { return IndexOf((string)value); } void IList.Insert(int index, object value) { Insert(index, (string)value); } void IList.Remove(object value) { Remove((string)value); } void ICollection.CopyTo(Array array, int index) { data.CopyTo(array, index); } IEnumerator IEnumerable.GetEnumerator() { return data.GetEnumerator(); } } ///Gets an object that can be used to synchronize access to the ///. /// public class StringEnumerator { private System.Collections.IEnumerator baseEnumerator; private System.Collections.IEnumerable temp; internal StringEnumerator(StringCollection mappings) { this.temp = (IEnumerable)(mappings); this.baseEnumerator = temp.GetEnumerator(); } ///[To be supplied.] ////// public string Current { get { return (string)(baseEnumerator.Current); } } ///[To be supplied.] ////// public bool MoveNext() { return baseEnumerator.MoveNext(); } ///[To be supplied.] ////// public void Reset() { baseEnumerator.Reset(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Collections.Specialized { using System.Diagnostics; using System.Collections; ////// [ Serializable, ] public class StringCollection : IList { private ArrayList data = new ArrayList(); ///Represents a collection of strings. ////// public string this[int index] { get { return ((string)data[index]); } set { data[index] = value; } } ///Represents the entry at the specified index of the ///. /// public int Count { get { return data.Count; } } bool IList.IsReadOnly { get { return false; } } bool IList.IsFixedSize { get { return false; } } ///Gets the number of strings in the /// ///. /// public int Add(string value) { return data.Add(value); } ///Adds a string with the specified value to the /// ///. /// public void AddRange(string[] value) { if (value == null) { throw new ArgumentNullException("value"); } data.AddRange(value); } ///Copies the elements of a string array to the end of the ///. /// public void Clear() { data.Clear(); } ///Removes all the strings from the /// ///. /// public bool Contains(string value) { return data.Contains(value); } ///Gets a value indicating whether the /// ///contains a string with the specified /// value. /// public void CopyTo(string[] array, int index) { data.CopyTo(array, index); } ///Copies the ///values to a one-dimensional instance at the /// specified index. /// public StringEnumerator GetEnumerator() { return new StringEnumerator(this); } ///Returns an enumerator that can iterate through /// the ///. /// public int IndexOf(string value) { return data.IndexOf(value); } ///Returns the index of the first occurrence of a string in /// the ///. /// public void Insert(int index, string value) { data.Insert(index, value); } ///Inserts a string into the ///at the specified /// index. /// public bool IsReadOnly { get { return false; } } ///Gets a value indicating whether the ///is read-only. /// public bool IsSynchronized { get { return false; } } ///Gets a value indicating whether access to the /// ////// is synchronized (thread-safe). /// public void Remove(string value) { data.Remove(value); } ///Removes a specific string from the /// ///. /// public void RemoveAt(int index) { data.RemoveAt(index); } ///Removes the string at the specified index of the ///. /// public object SyncRoot { get { return data.SyncRoot; } } object IList.this[int index] { get { return this[index]; } set { this[index] = (string)value; } } int IList.Add(object value) { return Add((string)value); } bool IList.Contains(object value) { return Contains((string) value); } int IList.IndexOf(object value) { return IndexOf((string)value); } void IList.Insert(int index, object value) { Insert(index, (string)value); } void IList.Remove(object value) { Remove((string)value); } void ICollection.CopyTo(Array array, int index) { data.CopyTo(array, index); } IEnumerator IEnumerable.GetEnumerator() { return data.GetEnumerator(); } } ///Gets an object that can be used to synchronize access to the ///. /// public class StringEnumerator { private System.Collections.IEnumerator baseEnumerator; private System.Collections.IEnumerable temp; internal StringEnumerator(StringCollection mappings) { this.temp = (IEnumerable)(mappings); this.baseEnumerator = temp.GetEnumerator(); } ///[To be supplied.] ////// public string Current { get { return (string)(baseEnumerator.Current); } } ///[To be supplied.] ////// public bool MoveNext() { return baseEnumerator.MoveNext(); } ///[To be supplied.] ////// public void Reset() { baseEnumerator.Reset(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu
![Network programming in C#, Network Programming in VB.NET, Network Programming in .NET](/images/book.jpg)
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- VarInfo.cs
- ScrollChrome.cs
- DirectionalLight.cs
- TypeUtil.cs
- TextRunProperties.cs
- PackUriHelper.cs
- QueryAsyncResult.cs
- ExtendLockCommand.cs
- BindingWorker.cs
- DashStyles.cs
- XPathParser.cs
- PolicyException.cs
- Binding.cs
- ListControlDataBindingHandler.cs
- CompositeCollectionView.cs
- TextDecorationCollectionConverter.cs
- ImageAnimator.cs
- InternalResources.cs
- CLSCompliantAttribute.cs
- OutputCacheProfile.cs
- LineGeometry.cs
- PropagatorResult.cs
- PhysicalFontFamily.cs
- SecurityVersion.cs
- COM2PropertyBuilderUITypeEditor.cs
- StrongNameKeyPair.cs
- EntityDataSourceContextCreatedEventArgs.cs
- TemplateControlParser.cs
- StrongNameUtility.cs
- SubpageParagraph.cs
- PageBorderless.cs
- QueryInterceptorAttribute.cs
- AppDomainAttributes.cs
- TransactedReceiveData.cs
- UpdatableGenericsFeature.cs
- StylusPointDescription.cs
- VarRefManager.cs
- ErrorStyle.cs
- ListItemParagraph.cs
- EntityClassGenerator.cs
- CqlWriter.cs
- DataGridViewCellStyleConverter.cs
- StreamInfo.cs
- CssStyleCollection.cs
- RuntimeResourceSet.cs
- PersistChildrenAttribute.cs
- BaseAsyncResult.cs
- SspiHelper.cs
- FragmentNavigationEventArgs.cs
- DbProviderFactoriesConfigurationHandler.cs
- ServicePointManager.cs
- ZipIOModeEnforcingStream.cs
- PreservationFileWriter.cs
- HierarchicalDataSourceDesigner.cs
- WebBrowser.cs
- DisplayClaim.cs
- QilNode.cs
- DataKeyPropertyAttribute.cs
- EventSetter.cs
- DataService.cs
- X509Logo.cs
- DataGridColumnCollection.cs
- DecoderNLS.cs
- CacheMode.cs
- PropertyChange.cs
- TraceHandlerErrorFormatter.cs
- AttributeCollection.cs
- EdmItemCollection.cs
- FreezableOperations.cs
- StringBuilder.cs
- SmiEventStream.cs
- SourceElementsCollection.cs
- InheritanceAttribute.cs
- ParallelTimeline.cs
- AccessibleObject.cs
- StateMachineWorkflowInstance.cs
- ButtonColumn.cs
- ToolBarButtonClickEvent.cs
- ReadOnlyHierarchicalDataSource.cs
- HtmlEncodedRawTextWriter.cs
- CreateBookmarkScope.cs
- OneToOneMappingSerializer.cs
- ExceptionCollection.cs
- SecurityUniqueId.cs
- CompModSwitches.cs
- BitSet.cs
- SoapTransportImporter.cs
- DataKey.cs
- DefaultValueTypeConverter.cs
- UdpRetransmissionSettings.cs
- Duration.cs
- Timer.cs
- CriticalFileToken.cs
- WsatTransactionHeader.cs
- OpCellTreeNode.cs
- MaskPropertyEditor.cs
- SourceChangedEventArgs.cs
- TextServicesCompartment.cs
- SystemWebSectionGroup.cs
- StandardCommands.cs