Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Util / DoubleLinkList.cs / 1305376 / DoubleLinkList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * DoubleLinkList * * Copyright (c) 1998-1999, Microsoft Corporation * */ namespace System.Web.Util { using System.Text; using System.Runtime.Serialization.Formatters; internal class DoubleLinkList : DoubleLink { internal DoubleLinkList() { } internal bool IsEmpty() { return _next == this; } internal virtual void InsertHead(DoubleLink entry) { entry.InsertAfter(this); } internal virtual void InsertTail(DoubleLink entry) { entry.InsertBefore(this); } internal DoubleLinkListEnumerator GetEnumerator() { return new DoubleLinkListEnumerator(this); } #if DBG internal override void DebugValidate() { DoubleLink l1, l2; base.DebugValidate(); /* * Detect loops by moving one pointer forward 2 for every 1 * of the other. */ l1 = l2 = this; for (;;) { /* move l2 forward */ l2 = l2._next; if (l2 == this) break; Debug.CheckValid(l2 != l1, "Invalid loop in list, first move."); l2.DebugValidate(); /* move l2 forward again */ l2 = l2._next; if (l2 == this) break; Debug.CheckValid(l2 != l1, "Invalid loop in list, second move."); l2.DebugValidate(); /* move l1 forward */ l1 = l1._next; } } internal override string DebugDescription(String indent) { string desc; DoubleLinkListEnumerator lenum; int c; StringBuilder sb; string i2 = indent + " "; if (IsEmpty()) { desc = indent + "DoubleLinkList is empty\n"; } else { c = Length; sb = new StringBuilder(indent + "DoubleLinkList has " + c + " entries.\n"); lenum = GetEnumerator(); while (lenum.MoveNext()) { sb.Append(Debug.GetDescription(lenum.GetDoubleLink(), i2)); } desc = sb.ToString(); } return desc; } #endif internal int Length { get { DoubleLinkListEnumerator lenum; int c; Debug.Validate(this); c = 0; lenum = GetEnumerator(); while (lenum.MoveNext()) { c++; } return c; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * DoubleLinkList * * Copyright (c) 1998-1999, Microsoft Corporation * */ namespace System.Web.Util { using System.Text; using System.Runtime.Serialization.Formatters; internal class DoubleLinkList : DoubleLink { internal DoubleLinkList() { } internal bool IsEmpty() { return _next == this; } internal virtual void InsertHead(DoubleLink entry) { entry.InsertAfter(this); } internal virtual void InsertTail(DoubleLink entry) { entry.InsertBefore(this); } internal DoubleLinkListEnumerator GetEnumerator() { return new DoubleLinkListEnumerator(this); } #if DBG internal override void DebugValidate() { DoubleLink l1, l2; base.DebugValidate(); /* * Detect loops by moving one pointer forward 2 for every 1 * of the other. */ l1 = l2 = this; for (;;) { /* move l2 forward */ l2 = l2._next; if (l2 == this) break; Debug.CheckValid(l2 != l1, "Invalid loop in list, first move."); l2.DebugValidate(); /* move l2 forward again */ l2 = l2._next; if (l2 == this) break; Debug.CheckValid(l2 != l1, "Invalid loop in list, second move."); l2.DebugValidate(); /* move l1 forward */ l1 = l1._next; } } internal override string DebugDescription(String indent) { string desc; DoubleLinkListEnumerator lenum; int c; StringBuilder sb; string i2 = indent + " "; if (IsEmpty()) { desc = indent + "DoubleLinkList is empty\n"; } else { c = Length; sb = new StringBuilder(indent + "DoubleLinkList has " + c + " entries.\n"); lenum = GetEnumerator(); while (lenum.MoveNext()) { sb.Append(Debug.GetDescription(lenum.GetDoubleLink(), i2)); } desc = sb.ToString(); } return desc; } #endif internal int Length { get { DoubleLinkListEnumerator lenum; int c; Debug.Validate(this); c = 0; lenum = GetEnumerator(); while (lenum.MoveNext()) { c++; } return c; } } } } // 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
- TargetControlTypeAttribute.cs
- ApplicationSecurityManager.cs
- UserControlParser.cs
- MemberAccessException.cs
- WebSysDefaultValueAttribute.cs
- FixedSOMElement.cs
- WebWorkflowRole.cs
- PropertyGridCommands.cs
- BinaryUtilClasses.cs
- AVElementHelper.cs
- MulticastDelegate.cs
- XmlResolver.cs
- FastEncoder.cs
- ZoneMembershipCondition.cs
- SchemaInfo.cs
- FeatureAttribute.cs
- InvalidEnumArgumentException.cs
- XmlAnyElementAttributes.cs
- MD5.cs
- FormsAuthenticationCredentials.cs
- StateItem.cs
- RepeaterItemCollection.cs
- List.cs
- TextContainer.cs
- CapabilitiesAssignment.cs
- CqlWriter.cs
- DataGridViewDataErrorEventArgs.cs
- XmlNamespaceMappingCollection.cs
- HighlightComponent.cs
- Attribute.cs
- CancellationTokenSource.cs
- messageonlyhwndwrapper.cs
- OutputWindow.cs
- KnownColorTable.cs
- Debug.cs
- WsatServiceAddress.cs
- _NestedMultipleAsyncResult.cs
- Comparer.cs
- TextBlockAutomationPeer.cs
- BindableAttribute.cs
- EditingCoordinator.cs
- XsdCachingReader.cs
- BitmapMetadataEnumerator.cs
- ReflectTypeDescriptionProvider.cs
- URLBuilder.cs
- DesignTimeVisibleAttribute.cs
- SystemIPv6InterfaceProperties.cs
- ScopedKnownTypes.cs
- SpeakCompletedEventArgs.cs
- GC.cs
- Stroke.cs
- SqlProviderServices.cs
- SecureConversationServiceElement.cs
- MediaCommands.cs
- SettingsSavedEventArgs.cs
- Rect.cs
- Vector3DIndependentAnimationStorage.cs
- PointLightBase.cs
- TriState.cs
- LassoHelper.cs
- NCryptSafeHandles.cs
- XmlSchemaSubstitutionGroup.cs
- HttpCapabilitiesBase.cs
- MemberInfoSerializationHolder.cs
- DataGridCaption.cs
- ProtocolsConfiguration.cs
- DataGridViewColumnEventArgs.cs
- TCPClient.cs
- RootBrowserWindowProxy.cs
- remotingproxy.cs
- Logging.cs
- ResourceDefaultValueAttribute.cs
- GridViewColumnCollectionChangedEventArgs.cs
- FormsIdentity.cs
- MergablePropertyAttribute.cs
- SmtpNegotiateAuthenticationModule.cs
- DependencyPropertyAttribute.cs
- ListView.cs
- HttpBindingExtension.cs
- WrappedIUnknown.cs
- UpDownEvent.cs
- OracleBoolean.cs
- PageParserFilter.cs
- RepeaterItem.cs
- PropertyPushdownHelper.cs
- PerformanceCounterPermissionEntry.cs
- TextCharacters.cs
- XmlSchemaAttributeGroup.cs
- Vector3DCollectionConverter.cs
- DataIdProcessor.cs
- PropertyItemInternal.cs
- MetadataSerializer.cs
- UrlAuthFailedErrorFormatter.cs
- BindingContext.cs
- CustomErrorsSectionWrapper.cs
- EmulateRecognizeCompletedEventArgs.cs
- PtsCache.cs
- OleDbConnectionFactory.cs
- CompilationSection.cs
- SmiXetterAccessMap.cs