We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 439eb94 commit d596b3fCopy full SHA for d596b3f
ReClass.NET/Extensions/IntPtrExtensions.cs
@@ -18,7 +18,7 @@ public static bool IsNull(this IntPtr ptr)
18
public static bool MayBeValid(this IntPtr ptr)
19
{
20
#if RECLASSNET64
21
- return ptr.InRange((IntPtr)0x10000, (IntPtr)long.MaxValue);
+ return ptr.IsInRange((IntPtr)0x10000, (IntPtr)long.MaxValue);
22
#else
23
return ptr.IsInRange((IntPtr)0x10000, (IntPtr)int.MaxValue);
24
#endif
0 commit comments