Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Util / SingleObjectCollection.cs / 1 / SingleObjectCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * SingleObjectCollection class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Util { using System.Collections; /* * Fast implementation of a collection with a single object */ internal class SingleObjectCollection: ICollection { private class SingleObjectEnumerator: IEnumerator { private object _object; private bool done; public SingleObjectEnumerator(object o) { _object = o; } public object Current { get { return _object; } } public bool MoveNext() { if (!done) { done = true; return true; } return false; } public void Reset() { done = false; } } private object _object; public SingleObjectCollection(object o) { _object = o; } IEnumerator IEnumerable.GetEnumerator() { return new SingleObjectEnumerator(_object); } public int Count { get { return 1; } } bool ICollection.IsSynchronized { get { return true; } } object ICollection.SyncRoot { get { return this; } } public void CopyTo(Array array, int index) { array.SetValue(_object, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * SingleObjectCollection class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Util { using System.Collections; /* * Fast implementation of a collection with a single object */ internal class SingleObjectCollection: ICollection { private class SingleObjectEnumerator: IEnumerator { private object _object; private bool done; public SingleObjectEnumerator(object o) { _object = o; } public object Current { get { return _object; } } public bool MoveNext() { if (!done) { done = true; return true; } return false; } public void Reset() { done = false; } } private object _object; public SingleObjectCollection(object o) { _object = o; } IEnumerator IEnumerable.GetEnumerator() { return new SingleObjectEnumerator(_object); } public int Count { get { return 1; } } bool ICollection.IsSynchronized { get { return true; } } object ICollection.SyncRoot { get { return this; } } public void CopyTo(Array array, int index) { array.SetValue(_object, index); } } } // 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
- CacheRequest.cs
- DataContext.cs
- ChildDocumentBlock.cs
- ThreadInterruptedException.cs
- FontCacheUtil.cs
- GroupAggregateExpr.cs
- Block.cs
- ScrollChangedEventArgs.cs
- AllowedAudienceUriElement.cs
- DriveNotFoundException.cs
- RoutingExtension.cs
- UITypeEditor.cs
- MruCache.cs
- WorkflowItemsPresenter.cs
- RequestBringIntoViewEventArgs.cs
- FragmentQueryKB.cs
- TableLayoutPanel.cs
- GenericWebPart.cs
- FragmentQueryProcessor.cs
- OracleTimeSpan.cs
- ZoneLinkButton.cs
- SqlXml.cs
- RegionData.cs
- Publisher.cs
- ScrollBar.cs
- LinkedResource.cs
- LocalBuilder.cs
- DeferredBinaryDeserializerExtension.cs
- UriSectionReader.cs
- AttributeQuery.cs
- DataExpression.cs
- EventMappingSettings.cs
- RecoverInstanceLocksCommand.cs
- ItemChangedEventArgs.cs
- ColorMatrix.cs
- OrderByQueryOptionExpression.cs
- MetadataFile.cs
- BuilderPropertyEntry.cs
- ActivityTypeDesigner.xaml.cs
- SpanIndex.cs
- NetPipeSection.cs
- CodeDOMProvider.cs
- KnownTypesProvider.cs
- ConditionCollection.cs
- SubclassTypeValidatorAttribute.cs
- SqlCacheDependencySection.cs
- CodeNamespace.cs
- DesigntimeLicenseContext.cs
- UrlMappingsSection.cs
- InputLanguageCollection.cs
- HttpCachePolicy.cs
- UriTemplateClientFormatter.cs
- ExceptionUtil.cs
- PageHandlerFactory.cs
- WindowsStatusBar.cs
- TableAdapterManagerNameHandler.cs
- Resources.Designer.cs
- BuildProvider.cs
- DataGridViewCellStyleChangedEventArgs.cs
- DebugView.cs
- StrongNamePublicKeyBlob.cs
- SiteMapDataSourceView.cs
- SkipStoryboardToFill.cs
- OrderByBuilder.cs
- ListViewInsertionMark.cs
- Brushes.cs
- PopupControlService.cs
- EncryptedType.cs
- DataGridTextBox.cs
- MarkerProperties.cs
- HttpAsyncResult.cs
- MobileListItem.cs
- ConfigurationStrings.cs
- WebPartConnection.cs
- InstanceCreationEditor.cs
- DbConnectionPoolOptions.cs
- AsyncOperation.cs
- SynchronizationContext.cs
- DeploymentSection.cs
- SmtpException.cs
- Matrix.cs
- RenderContext.cs
- XmlHierarchyData.cs
- Error.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- SafeNativeMethods.cs
- TrackingMemoryStream.cs
- InternalBufferOverflowException.cs
- SecurityTokenSerializer.cs
- DayRenderEvent.cs
- EditorPartChrome.cs
- EntityProxyTypeInfo.cs
- MarkupExtensionReturnTypeAttribute.cs
- SiblingIterators.cs
- TransportListener.cs
- OneWayChannelFactory.cs
- MultiTrigger.cs
- HandleValueEditor.cs
- ServicePointManager.cs
- LogLogRecordHeader.cs