Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Xml / System / Xml / ByteStack.cs / 1 / ByteStack.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; namespace System.Xml { // This stack is designed to minimize object creation for the // objects being stored in the stack by allowing them to be // re-used over time. It basically pushes the objects creating // a high water mark then as Pop() is called they are not removed // so that next time Push() is called it simply returns the last // object that was already on the stack. internal class ByteStack { private byte[] stack; private int growthRate; private int top; private int size; public ByteStack(int growthRate) { this.growthRate = growthRate; top = 0; stack = new byte[growthRate]; size = growthRate; } public void Push(byte data) { if (size == top) { byte[] newstack = new byte[size + growthRate]; if (top > 0) { Buffer.BlockCopy(stack, 0, newstack, 0, top); } stack = newstack; size += growthRate; } stack[top++] = data; } public byte Pop() { if (top > 0) { return stack[--top]; } else { return 0; } } public byte Peek() { if (top > 0) { return stack[top - 1]; } else { return 0; } } public int Length { get { return top; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ColumnHeaderConverter.cs
- SecurityHeaderElementInferenceEngine.cs
- GeneralTransform.cs
- CodeNamespaceCollection.cs
- diagnosticsswitches.cs
- TypeConverterHelper.cs
- AssociationTypeEmitter.cs
- FormsAuthenticationUser.cs
- XhtmlBasicLabelAdapter.cs
- StorageInfo.cs
- PerformanceCounterPermission.cs
- ProcessMonitor.cs
- DataTableExtensions.cs
- TdsParserStaticMethods.cs
- DynamicQueryableWrapper.cs
- TabPanel.cs
- JpegBitmapDecoder.cs
- OpenTypeLayout.cs
- CheckBox.cs
- ScalarOps.cs
- StateRuntime.cs
- AdCreatedEventArgs.cs
- SmiSettersStream.cs
- ConstraintManager.cs
- TrustSection.cs
- OleDbParameterCollection.cs
- MenuStrip.cs
- WorkerRequest.cs
- QueryConverter.cs
- WebServiceMethodData.cs
- LocalBuilder.cs
- AsyncPostBackErrorEventArgs.cs
- Table.cs
- SqlAliasesReferenced.cs
- GroupQuery.cs
- XmlEntity.cs
- JavascriptCallbackMessageInspector.cs
- NonBatchDirectoryCompiler.cs
- ServiceEndpoint.cs
- SiteMapNodeItem.cs
- ComponentEditorPage.cs
- ToolStripArrowRenderEventArgs.cs
- SizeIndependentAnimationStorage.cs
- NamespaceEmitter.cs
- SecurityRuntime.cs
- EventLogReader.cs
- DbConnectionPoolGroup.cs
- EvidenceBase.cs
- ParameterInfo.cs
- TraceSwitch.cs
- URI.cs
- XmlSchemaChoice.cs
- TypeExtensionConverter.cs
- DocumentationServerProtocol.cs
- Metadata.cs
- httpstaticobjectscollection.cs
- HttpFileCollection.cs
- X509ChainElement.cs
- CompiledIdentityConstraint.cs
- StoreItemCollection.Loader.cs
- TouchFrameEventArgs.cs
- SchemaCollectionCompiler.cs
- StatusBarAutomationPeer.cs
- StringCollection.cs
- Literal.cs
- RenderOptions.cs
- ProtocolsConfigurationEntry.cs
- SafeHGlobalHandleCritical.cs
- PositiveTimeSpanValidator.cs
- MultiPageTextView.cs
- DataSourceProvider.cs
- Html32TextWriter.cs
- WebReferencesBuildProvider.cs
- VersionPair.cs
- GridEntry.cs
- ListenerElementsCollection.cs
- CachedFontFace.cs
- SecurityException.cs
- SchemaTypeEmitter.cs
- TemplateKeyConverter.cs
- CfgParser.cs
- RouteItem.cs
- BrowserCapabilitiesFactoryBase.cs
- SymbolType.cs
- ControllableStoryboardAction.cs
- OdbcDataAdapter.cs
- Receive.cs
- PropertyChangedEventManager.cs
- DataGridHyperlinkColumn.cs
- UIElementAutomationPeer.cs
- ClockGroup.cs
- BuildResult.cs
- Timeline.cs
- TemplateComponentConnector.cs
- EventMappingSettings.cs
- Char.cs
- StrongNamePublicKeyBlob.cs
- OleDbDataReader.cs
- NodeFunctions.cs
- System.Data_BID.cs