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 / EmptyCollection.cs / 1 / EmptyCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * EmptyCollection class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Util { using System.Collections; /* * Fast implementation of an empty collection */ internal class EmptyCollection: ICollection, IEnumerator { private static EmptyCollection s_theEmptyCollection = new EmptyCollection(); private EmptyCollection() { } // Return the same instance all the time, since it's immutable internal static EmptyCollection Instance { get { return s_theEmptyCollection; } } // ICollection implementation IEnumerator IEnumerable.GetEnumerator() { return this; } public int Count { get { return 0; } } bool ICollection.IsSynchronized { get { return true; } } object ICollection.SyncRoot { get { return this; } } public void CopyTo(Array array, int index) { } // IEnumerator implementation object IEnumerator.Current { get { return null; } } bool IEnumerator.MoveNext() { return false; } void IEnumerator.Reset() { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * EmptyCollection class * * Copyright (c) 1999 Microsoft Corporation */ namespace System.Web.Util { using System.Collections; /* * Fast implementation of an empty collection */ internal class EmptyCollection: ICollection, IEnumerator { private static EmptyCollection s_theEmptyCollection = new EmptyCollection(); private EmptyCollection() { } // Return the same instance all the time, since it's immutable internal static EmptyCollection Instance { get { return s_theEmptyCollection; } } // ICollection implementation IEnumerator IEnumerable.GetEnumerator() { return this; } public int Count { get { return 0; } } bool ICollection.IsSynchronized { get { return true; } } object ICollection.SyncRoot { get { return this; } } public void CopyTo(Array array, int index) { } // IEnumerator implementation object IEnumerator.Current { get { return null; } } bool IEnumerator.MoveNext() { return false; } void IEnumerator.Reset() { } } } // 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
- ObjectItemAssemblyLoader.cs
- FormatterServices.cs
- LinkArea.cs
- jithelpers.cs
- PropertyPath.cs
- UpDownBase.cs
- HtmlElementErrorEventArgs.cs
- SafeNativeMethodsCLR.cs
- AnchoredBlock.cs
- Win32Exception.cs
- WebBrowserHelper.cs
- VariableQuery.cs
- PageCodeDomTreeGenerator.cs
- PartitionResolver.cs
- CompilerErrorCollection.cs
- TextSelection.cs
- Roles.cs
- OuterGlowBitmapEffect.cs
- QuotedPrintableStream.cs
- IEnumerable.cs
- EFAssociationProvider.cs
- CompensationExtension.cs
- WebPartPersonalization.cs
- WebDescriptionAttribute.cs
- Misc.cs
- CompositeActivityTypeDescriptor.cs
- DbConnectionOptions.cs
- XPathAxisIterator.cs
- DeviceContext2.cs
- ArrayWithOffset.cs
- PackageDigitalSignature.cs
- WorkflowInstance.cs
- ExpandedWrapper.cs
- SelectingProviderEventArgs.cs
- SrgsGrammarCompiler.cs
- ListCommandEventArgs.cs
- ListViewEditEventArgs.cs
- SecurityPermission.cs
- OdbcFactory.cs
- Events.cs
- MimeBasePart.cs
- ByteStack.cs
- cryptoapiTransform.cs
- HtmlContainerControl.cs
- SoapObjectWriter.cs
- GridItemPattern.cs
- ReliableMessagingVersionConverter.cs
- StateBag.cs
- XmlSerializerNamespaces.cs
- DataBindingHandlerAttribute.cs
- XmlSchemaSimpleContent.cs
- SystemSounds.cs
- HttpValueCollection.cs
- TreeWalkHelper.cs
- XmlSchema.cs
- PathData.cs
- SqlBuilder.cs
- StatusBarPanel.cs
- FullTextLine.cs
- CommandHelper.cs
- EventLogger.cs
- CalendarDay.cs
- GraphicsState.cs
- Predicate.cs
- TextRunTypographyProperties.cs
- EntityDataSourceState.cs
- EdgeModeValidation.cs
- DigestTraceRecordHelper.cs
- HTTPNotFoundHandler.cs
- XPathNodePointer.cs
- listitem.cs
- FontNamesConverter.cs
- SafeUserTokenHandle.cs
- Int16Storage.cs
- RelationshipEnd.cs
- SerializationSectionGroup.cs
- ProfilePropertySettings.cs
- DefaultTraceListener.cs
- CLSCompliantAttribute.cs
- MetadataSource.cs
- ConsoleEntryPoint.cs
- CodeValidator.cs
- DataGridViewHitTestInfo.cs
- Permission.cs
- ErrorInfoXmlDocument.cs
- DataContractSet.cs
- Baml2006Reader.cs
- XmlSerializerFactory.cs
- Vector3DConverter.cs
- ItemDragEvent.cs
- AttributeCollection.cs
- ItemChangedEventArgs.cs
- InternalTypeHelper.cs
- AssertValidation.cs
- XmlLinkedNode.cs
- ListViewSelectEventArgs.cs
- ProgressBarAutomationPeer.cs
- _NegoState.cs
- ExeContext.cs
- WebPartZoneBase.cs