Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / ParseNumbers.cs / 1 / ParseNumbers.cs
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*============================================================
**
** Class: ParseNumbers
**
**
** Purpose: Methods for Parsing numbers and Strings.
** All methods are implemented in native.
**
**
===========================================================*/
namespace System {
//This class contains only static members and does not need to be serializable.
using System;
using System.Runtime.CompilerServices;
internal static class ParseNumbers {
internal const int PrintAsI1=0x40;
internal const int PrintAsI2=0x80;
internal const int PrintAsI4=0x100;
internal const int TreatAsUnsigned=0x200;
internal const int TreatAsI1=0x400;
internal const int TreatAsI2=0x800;
internal const int IsTight=0x1000;
internal const int NoSpace=0x2000;
//
//
// NATIVE METHODS
// For comments on these methods please see $\src\vm\COMUtilNative.cpp
//
public unsafe static long StringToLong(System.String s, int radix, int flags) {
return StringToLong(s,radix,flags, null);
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public unsafe extern static long StringToLong(System.String s, int radix, int flags, int* currPos);
public unsafe static long StringToLong(System.String s, int radix, int flags, ref int currPos) {
fixed(int * ppos = &currPos) {
return StringToLong( s, radix, flags, ppos);
}
}
public unsafe static int StringToInt(System.String s, int radix, int flags) {
return StringToInt(s,radix,flags, null);
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public unsafe extern static int StringToInt(System.String s, int radix, int flags, int* currPos);
public unsafe static int StringToInt(System.String s, int radix, int flags, ref int currPos) {
fixed(int * ppos = &currPos) {
return StringToInt( s, radix, flags, ppos);
}
}
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public extern static String IntToString(int l, int radix, int width, char paddingChar, int flags);
[MethodImplAttribute(MethodImplOptions.InternalCall)]
public extern static String LongToString(long l, int radix, int width, char paddingChar, int flags);
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CachedTypeface.cs
- GridView.cs
- ValidationSummaryDesigner.cs
- XmlSchemaAnnotated.cs
- TextDecorationLocationValidation.cs
- DBCommand.cs
- NetworkInterface.cs
- EditorPart.cs
- TemplateField.cs
- QueryCacheEntry.cs
- OleDbWrapper.cs
- QilInvokeLateBound.cs
- UnsafeMethods.cs
- SystemInformation.cs
- WinFormsSecurity.cs
- TrackingServices.cs
- FormViewModeEventArgs.cs
- FilteredAttributeCollection.cs
- XamlSerializer.cs
- MultiSelector.cs
- ObjectParameter.cs
- TiffBitmapEncoder.cs
- RtfToXamlLexer.cs
- ResourceWriter.cs
- SByteStorage.cs
- UnsafeNativeMethodsTablet.cs
- PathFigureCollectionConverter.cs
- HotSpotCollection.cs
- MultiDataTrigger.cs
- PersistChildrenAttribute.cs
- X509ChainElement.cs
- SmtpDigestAuthenticationModule.cs
- DataGridBoundColumn.cs
- DefaultShape.cs
- ToolStripSystemRenderer.cs
- ButtonBaseAutomationPeer.cs
- DocumentPageView.cs
- COM2IDispatchConverter.cs
- DataControlField.cs
- SafeSecurityHandles.cs
- InstanceDescriptor.cs
- JavaScriptString.cs
- BigInt.cs
- SqlDataSourceFilteringEventArgs.cs
- Cloud.cs
- DataSourceProvider.cs
- ControlValuePropertyAttribute.cs
- ProgressBarRenderer.cs
- DateTimeStorage.cs
- LinkTarget.cs
- SafeSerializationManager.cs
- ListViewSortEventArgs.cs
- SizeChangedEventArgs.cs
- Visual3D.cs
- XmlSerializationGeneratedCode.cs
- EmptyReadOnlyDictionaryInternal.cs
- WebPartDesigner.cs
- ZoomingMessageFilter.cs
- SocketException.cs
- HttpServerProtocol.cs
- ListControlConvertEventArgs.cs
- ButtonPopupAdapter.cs
- InputManager.cs
- RoutedPropertyChangedEventArgs.cs
- InvalidWMPVersionException.cs
- QueuePathDialog.cs
- Color.cs
- CommandBinding.cs
- GeneralTransform3DGroup.cs
- RuntimeHandles.cs
- CachedRequestParams.cs
- TypefaceMap.cs
- SizeValueSerializer.cs
- TraceListener.cs
- DataGridViewSortCompareEventArgs.cs
- SQLInt32Storage.cs
- ThemeableAttribute.cs
- DecoderFallbackWithFailureFlag.cs
- KoreanLunisolarCalendar.cs
- EnumUnknown.cs
- TypeReference.cs
- CompensationDesigner.cs
- SecurityTokenValidationException.cs
- WpfKnownMemberInvoker.cs
- TextRange.cs
- Context.cs
- IndexedEnumerable.cs
- SelfIssuedAuthProofToken.cs
- FormView.cs
- TraceSource.cs
- XmlComment.cs
- XmlSerializer.cs
- TableParaClient.cs
- EmptyEnumerator.cs
- ZipIORawDataFileBlock.cs
- RuleConditionDialog.cs
- _HTTPDateParse.cs
- ListControlDataBindingHandler.cs
- CapabilitiesState.cs
- AccessibilityHelperForXpWin2k3.cs