Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / UIntPtr.cs / 1305376 / UIntPtr.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: UIntPtr ** ** ** Purpose: Platform independent integer ** ** ===========================================================*/ namespace System { using System; using System.Globalization; using System.Runtime.Serialization; using System.Diagnostics.Contracts; [Serializable] [CLSCompliant(false)] [System.Runtime.InteropServices.ComVisible(true)] public struct UIntPtr : ISerializable { unsafe private void* m_value; public static readonly UIntPtr Zero; [System.Security.SecuritySafeCritical] // auto-generated public unsafe UIntPtr(uint value) { m_value = (void *)value; } [System.Security.SecuritySafeCritical] // auto-generated public unsafe UIntPtr(ulong value) { #if WIN32 m_value = (void*)checked((uint)value); #else m_value = (void *)value; #endif } [System.Security.SecurityCritical] // auto-generated [CLSCompliant(false)] public unsafe UIntPtr(void* value) { m_value = value; } [System.Security.SecurityCritical] // auto-generated private unsafe UIntPtr(SerializationInfo info, StreamingContext context) { ulong l = info.GetUInt64("value"); if (Size==4 && l>UInt32.MaxValue) { throw new ArgumentException(Environment.GetResourceString("Serialization_InvalidPtrValue")); } m_value = (void *)l; } #if FEATURE_SERIALIZATION [System.Security.SecurityCritical] unsafe void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { if (info==null) { throw new ArgumentNullException("info"); } Contract.EndContractBlock(); info.AddValue("value", (ulong)m_value); } #endif [System.Security.SecuritySafeCritical] // auto-generated public unsafe override bool Equals(Object obj) { if (obj is UIntPtr) { return (m_value == ((UIntPtr)obj).m_value); } return false; } [System.Security.SecuritySafeCritical] // auto-generated public unsafe override int GetHashCode() { return unchecked((int)((long)m_value)) & 0x7fffffff; } [System.Security.SecuritySafeCritical] // auto-generated public unsafe uint ToUInt32() { #if WIN32 return (uint)m_value; #else return checked((uint)m_value); #endif } [System.Security.SecuritySafeCritical] // auto-generated public unsafe ulong ToUInt64() { return (ulong)m_value; } [System.Security.SecuritySafeCritical] // auto-generated public unsafe override String ToString() { Contract.Ensures(Contract.Result() != null); #if WIN32 return ((uint)m_value).ToString(CultureInfo.InvariantCulture); #else return ((ulong)m_value).ToString(CultureInfo.InvariantCulture); #endif } public static explicit operator UIntPtr (uint value) { return new UIntPtr(value); } public static explicit operator UIntPtr (ulong value) { return new UIntPtr(value); } [System.Security.SecuritySafeCritical] // auto-generated public unsafe static explicit operator uint(UIntPtr value) { #if WIN32 return (uint)value.m_value; #else return checked((uint)value.m_value); #endif } [System.Security.SecuritySafeCritical] // auto-generated public unsafe static explicit operator ulong (UIntPtr value) { return (ulong)value.m_value; } [System.Security.SecurityCritical] // auto-generated [CLSCompliant(false)] public static unsafe explicit operator UIntPtr (void* value) { return new UIntPtr(value); } [System.Security.SecurityCritical] // auto-generated [CLSCompliant(false)] public static unsafe explicit operator void* (UIntPtr value) { return value.ToPointer(); } [System.Security.SecuritySafeCritical] // auto-generated public unsafe static bool operator == (UIntPtr value1, UIntPtr value2) { return value1.m_value == value2.m_value; } [System.Security.SecuritySafeCritical] // auto-generated public unsafe static bool operator != (UIntPtr value1, UIntPtr value2) { return value1.m_value != value2.m_value; } [System.Security.SecuritySafeCritical] // auto-generated public static UIntPtr Add(UIntPtr pointer, int offset) { return pointer + offset; } [System.Security.SecuritySafeCritical] // auto-generated public static UIntPtr operator +(UIntPtr pointer, int offset) { #if WIN32 return new UIntPtr(pointer.ToUInt32() + (uint)offset); #else return new UIntPtr(pointer.ToUInt64() + (ulong)offset); #endif } [System.Security.SecuritySafeCritical] // auto-generated public static UIntPtr Subtract(UIntPtr pointer, int offset) { return pointer - offset; } [System.Security.SecuritySafeCritical] // auto-generated public static UIntPtr operator -(UIntPtr pointer, int offset) { #if WIN32 return new UIntPtr(pointer.ToUInt32() - (uint)offset); #else return new UIntPtr(pointer.ToUInt64() - (ulong)offset); #endif } public static int Size { get { #if WIN32 return 4; #else return 8; #endif } } [System.Security.SecuritySafeCritical] // auto-generated [CLSCompliant(false)] public unsafe void* ToPointer() { return m_value; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================ ** ** Class: UIntPtr ** ** ** Purpose: Platform independent integer ** ** ===========================================================*/ namespace System { using System; using System.Globalization; using System.Runtime.Serialization; using System.Diagnostics.Contracts; [Serializable] [CLSCompliant(false)] [System.Runtime.InteropServices.ComVisible(true)] public struct UIntPtr : ISerializable { unsafe private void* m_value; public static readonly UIntPtr Zero; [System.Security.SecuritySafeCritical] // auto-generated public unsafe UIntPtr(uint value) { m_value = (void *)value; } [System.Security.SecuritySafeCritical] // auto-generated public unsafe UIntPtr(ulong value) { #if WIN32 m_value = (void*)checked((uint)value); #else m_value = (void *)value; #endif } [System.Security.SecurityCritical] // auto-generated [CLSCompliant(false)] public unsafe UIntPtr(void* value) { m_value = value; } [System.Security.SecurityCritical] // auto-generated private unsafe UIntPtr(SerializationInfo info, StreamingContext context) { ulong l = info.GetUInt64("value"); if (Size==4 && l>UInt32.MaxValue) { throw new ArgumentException(Environment.GetResourceString("Serialization_InvalidPtrValue")); } m_value = (void *)l; } #if FEATURE_SERIALIZATION [System.Security.SecurityCritical] unsafe void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { if (info==null) { throw new ArgumentNullException("info"); } Contract.EndContractBlock(); info.AddValue("value", (ulong)m_value); } #endif [System.Security.SecuritySafeCritical] // auto-generated public unsafe override bool Equals(Object obj) { if (obj is UIntPtr) { return (m_value == ((UIntPtr)obj).m_value); } return false; } [System.Security.SecuritySafeCritical] // auto-generated public unsafe override int GetHashCode() { return unchecked((int)((long)m_value)) & 0x7fffffff; } [System.Security.SecuritySafeCritical] // auto-generated public unsafe uint ToUInt32() { #if WIN32 return (uint)m_value; #else return checked((uint)m_value); #endif } [System.Security.SecuritySafeCritical] // auto-generated public unsafe ulong ToUInt64() { return (ulong)m_value; } [System.Security.SecuritySafeCritical] // auto-generated public unsafe override String ToString() { Contract.Ensures(Contract.Result () != null); #if WIN32 return ((uint)m_value).ToString(CultureInfo.InvariantCulture); #else return ((ulong)m_value).ToString(CultureInfo.InvariantCulture); #endif } public static explicit operator UIntPtr (uint value) { return new UIntPtr(value); } public static explicit operator UIntPtr (ulong value) { return new UIntPtr(value); } [System.Security.SecuritySafeCritical] // auto-generated public unsafe static explicit operator uint(UIntPtr value) { #if WIN32 return (uint)value.m_value; #else return checked((uint)value.m_value); #endif } [System.Security.SecuritySafeCritical] // auto-generated public unsafe static explicit operator ulong (UIntPtr value) { return (ulong)value.m_value; } [System.Security.SecurityCritical] // auto-generated [CLSCompliant(false)] public static unsafe explicit operator UIntPtr (void* value) { return new UIntPtr(value); } [System.Security.SecurityCritical] // auto-generated [CLSCompliant(false)] public static unsafe explicit operator void* (UIntPtr value) { return value.ToPointer(); } [System.Security.SecuritySafeCritical] // auto-generated public unsafe static bool operator == (UIntPtr value1, UIntPtr value2) { return value1.m_value == value2.m_value; } [System.Security.SecuritySafeCritical] // auto-generated public unsafe static bool operator != (UIntPtr value1, UIntPtr value2) { return value1.m_value != value2.m_value; } [System.Security.SecuritySafeCritical] // auto-generated public static UIntPtr Add(UIntPtr pointer, int offset) { return pointer + offset; } [System.Security.SecuritySafeCritical] // auto-generated public static UIntPtr operator +(UIntPtr pointer, int offset) { #if WIN32 return new UIntPtr(pointer.ToUInt32() + (uint)offset); #else return new UIntPtr(pointer.ToUInt64() + (ulong)offset); #endif } [System.Security.SecuritySafeCritical] // auto-generated public static UIntPtr Subtract(UIntPtr pointer, int offset) { return pointer - offset; } [System.Security.SecuritySafeCritical] // auto-generated public static UIntPtr operator -(UIntPtr pointer, int offset) { #if WIN32 return new UIntPtr(pointer.ToUInt32() - (uint)offset); #else return new UIntPtr(pointer.ToUInt64() - (ulong)offset); #endif } public static int Size { get { #if WIN32 return 4; #else return 8; #endif } } [System.Security.SecuritySafeCritical] // auto-generated [CLSCompliant(false)] public unsafe void* ToPointer() { return m_value; } } } // 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
- NameValueSectionHandler.cs
- TextParaClient.cs
- DataGridCellAutomationPeer.cs
- IgnoreSection.cs
- TimeSpanSecondsConverter.cs
- MatchingStyle.cs
- SwitchAttribute.cs
- BooleanAnimationBase.cs
- NamespaceEmitter.cs
- WindowsListBox.cs
- DrawingGroup.cs
- parserscommon.cs
- WebBrowser.cs
- WindowsStartMenu.cs
- NetworkInformationPermission.cs
- InfoCardClaimCollection.cs
- TableRow.cs
- InternalBase.cs
- DateTimeValueSerializerContext.cs
- Util.cs
- InvalidCastException.cs
- _TransmitFileOverlappedAsyncResult.cs
- Form.cs
- NonBatchDirectoryCompiler.cs
- OutKeywords.cs
- Literal.cs
- Highlights.cs
- ProgressBar.cs
- SystemIPInterfaceProperties.cs
- DataGridViewRowsRemovedEventArgs.cs
- XmlSchemaImporter.cs
- TextTreeFixupNode.cs
- TypeHelper.cs
- HtmlEncodedRawTextWriter.cs
- MimeFormatExtensions.cs
- Object.cs
- XNameConverter.cs
- XPathSelectionIterator.cs
- StorageMappingFragment.cs
- SystemWebSectionGroup.cs
- SimpleBitVector32.cs
- XmlSchemaSubstitutionGroup.cs
- FormsAuthenticationModule.cs
- CustomAttributeBuilder.cs
- RadioButtonPopupAdapter.cs
- PackagingUtilities.cs
- WebPartHeaderCloseVerb.cs
- FontDriver.cs
- RequestResizeEvent.cs
- ThemeInfoAttribute.cs
- ObjectDataSourceFilteringEventArgs.cs
- MarkupExtensionParser.cs
- AccessDataSourceView.cs
- FontWeightConverter.cs
- XamlTemplateSerializer.cs
- MouseGesture.cs
- WindowsListViewSubItem.cs
- CapabilitiesRule.cs
- CryptoProvider.cs
- ProviderSettingsCollection.cs
- AsymmetricKeyExchangeDeformatter.cs
- TimeIntervalCollection.cs
- FileDialogCustomPlace.cs
- IntersectQueryOperator.cs
- PKCS1MaskGenerationMethod.cs
- XmlNavigatorStack.cs
- ProviderCollection.cs
- CustomCredentialPolicy.cs
- SafeFileMappingHandle.cs
- ObjectAnimationBase.cs
- DataGridColumnCollectionEditor.cs
- CompilerGlobalScopeAttribute.cs
- COM2PictureConverter.cs
- HttpDateParse.cs
- QueueProcessor.cs
- OdbcDataReader.cs
- XmlComplianceUtil.cs
- sqlstateclientmanager.cs
- Compiler.cs
- AttachmentCollection.cs
- DependencyProperty.cs
- MsmqException.cs
- DiscoveryExceptionDictionary.cs
- DocumentApplicationJournalEntry.cs
- Mapping.cs
- DeflateStreamAsyncResult.cs
- Operand.cs
- followingsibling.cs
- DecoderReplacementFallback.cs
- WebBrowserProgressChangedEventHandler.cs
- ErrorInfoXmlDocument.cs
- LineSegment.cs
- GroupDescription.cs
- DataGridViewDataErrorEventArgs.cs
- DataGridViewControlCollection.cs
- CompiledRegexRunner.cs
- OutOfProcStateClientManager.cs
- ImageDrawing.cs
- FileChangesMonitor.cs
- GacUtil.cs