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
- XmlWriterSettings.cs
- PieceNameHelper.cs
- CurrentTimeZone.cs
- CheckableControlBaseAdapter.cs
- Logging.cs
- DesignerActionService.cs
- OleDbParameter.cs
- TdsParser.cs
- WebPartConnectionsDisconnectVerb.cs
- RenderDataDrawingContext.cs
- EmptyEnumerable.cs
- Parsers.cs
- IsolatedStoragePermission.cs
- WebPartConnectionsConfigureVerb.cs
- InvalidPrinterException.cs
- DynamicValueConverter.cs
- ManipulationPivot.cs
- DeferredReference.cs
- OleDbInfoMessageEvent.cs
- TextTreeTextElementNode.cs
- BookmarkNameHelper.cs
- DataRowExtensions.cs
- PointCollection.cs
- LaxModeSecurityHeaderElementInferenceEngine.cs
- ClientRolePrincipal.cs
- TraceHandler.cs
- XmlTextWriter.cs
- relpropertyhelper.cs
- XmlImplementation.cs
- Query.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- SQLInt64Storage.cs
- HttpCookie.cs
- PrivilegeNotHeldException.cs
- ObjectItemCollection.cs
- RegexCompiler.cs
- XPathAncestorIterator.cs
- XsltArgumentList.cs
- TextContainerHelper.cs
- GridLength.cs
- StylusPointProperty.cs
- nulltextnavigator.cs
- Debug.cs
- ProcessHostConfigUtils.cs
- TypeUtils.cs
- Module.cs
- NativeMethods.cs
- Expression.cs
- MatrixConverter.cs
- TextDecorationCollectionConverter.cs
- ScriptingRoleServiceSection.cs
- InputMethod.cs
- TileBrush.cs
- EdmMember.cs
- oledbmetadatacolumnnames.cs
- TimeSpanSecondsConverter.cs
- SqlBooleanMismatchVisitor.cs
- SecuritySessionClientSettings.cs
- NewArrayExpression.cs
- SecurityTimestamp.cs
- XmlIncludeAttribute.cs
- ClientTargetSection.cs
- MSHTMLHost.cs
- ApplicationTrust.cs
- Events.cs
- TimeZone.cs
- VScrollBar.cs
- ZipIOCentralDirectoryFileHeader.cs
- ObjectViewQueryResultData.cs
- ColumnTypeConverter.cs
- PathBox.cs
- DesignTimeParseData.cs
- BooleanKeyFrameCollection.cs
- StorageBasedPackageProperties.cs
- VisualBasicReference.cs
- TransformConverter.cs
- NativeObjectSecurity.cs
- HtmlInputReset.cs
- SqlTopReducer.cs
- SettingsBase.cs
- UserNameSecurityToken.cs
- EpmTargetTree.cs
- PathSegment.cs
- XmlValueConverter.cs
- PasswordTextContainer.cs
- DecimalKeyFrameCollection.cs
- InplaceBitmapMetadataWriter.cs
- ZipIOExtraFieldZip64Element.cs
- SimplePropertyEntry.cs
- WaitHandle.cs
- PriorityBinding.cs
- DesignerAutoFormatStyle.cs
- MouseDevice.cs
- EntityDataSourceChangedEventArgs.cs
- CopyNodeSetAction.cs
- DeflateEmulationStream.cs
- Operator.cs
- LazyLoadBehavior.cs
- SQLResource.cs
- _BasicClient.cs