Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ToolTipService.cs
- ProgressBar.cs
- BinaryWriter.cs
- SqlWebEventProvider.cs
- XmlDownloadManager.cs
- WebPartEditorOkVerb.cs
- bidPrivateBase.cs
- DataViewSettingCollection.cs
- InstanceDescriptor.cs
- FontConverter.cs
- TransformProviderWrapper.cs
- SqlConnectionHelper.cs
- ObjectTypeMapping.cs
- ServiceHostingEnvironment.cs
- TableCellAutomationPeer.cs
- AppDomainManager.cs
- Activator.cs
- _BasicClient.cs
- CompilationRelaxations.cs
- DelegateArgumentReference.cs
- CacheDependency.cs
- DataSourceControl.cs
- BorderGapMaskConverter.cs
- XmlAttributeAttribute.cs
- RowUpdatingEventArgs.cs
- PreloadHost.cs
- PropertyGridDesigner.cs
- DurableInstanceProvider.cs
- ScriptResourceInfo.cs
- ApplicationDirectoryMembershipCondition.cs
- GacUtil.cs
- Collection.cs
- CompiledIdentityConstraint.cs
- Currency.cs
- ConvertersCollection.cs
- BasicViewGenerator.cs
- IndividualDeviceConfig.cs
- EditingCoordinator.cs
- CssClassPropertyAttribute.cs
- StandardToolWindows.cs
- MenuStrip.cs
- ServiceModelPerformanceCounters.cs
- SystemIPInterfaceStatistics.cs
- Section.cs
- DynamicMetaObject.cs
- LifetimeServices.cs
- DockPattern.cs
- EntityDataSourceEntityTypeFilterItem.cs
- WorkflowMessageEventHandler.cs
- CompiledIdentityConstraint.cs
- UrlMapping.cs
- CustomLineCap.cs
- BufferModeSettings.cs
- Console.cs
- SimpleHandlerFactory.cs
- OutputCacheEntry.cs
- CodeChecksumPragma.cs
- AspProxy.cs
- TableRow.cs
- FormsAuthenticationEventArgs.cs
- FormViewPagerRow.cs
- IsolatedStorageFile.cs
- RC2CryptoServiceProvider.cs
- WebConfigurationFileMap.cs
- ImageField.cs
- ActivityExecutionContextCollection.cs
- XmlSchemaCollection.cs
- Monitor.cs
- Attribute.cs
- EntityType.cs
- PersonalizationAdministration.cs
- DocumentManager.cs
- CqlWriter.cs
- OperatingSystem.cs
- CultureMapper.cs
- InheritanceUI.cs
- StorageEntityTypeMapping.cs
- CanonicalizationDriver.cs
- XmlSchemaSimpleType.cs
- LoadedOrUnloadedOperation.cs
- MethodBody.cs
- FamilyTypefaceCollection.cs
- XmlQueryCardinality.cs
- ClientConvert.cs
- IgnoreDeviceFilterElement.cs
- EdgeProfileValidation.cs
- SmtpReplyReader.cs
- PrimitiveDataContract.cs
- CalendarSelectionChangedEventArgs.cs
- SuppressMergeCheckAttribute.cs
- COAUTHIDENTITY.cs
- Tracer.cs
- DivideByZeroException.cs
- HtmlProps.cs
- PathData.cs
- Util.cs
- TypeBinaryExpression.cs
- MarshalDirectiveException.cs
- TemplatedMailWebEventProvider.cs
- ContextProperty.cs