![]() |
VOOZH | about |
dotnet add package FASM_MayCry --version 0.0.1
NuGet\Install-Package FASM_MayCry -Version 0.0.1
<PackageReference Include="FASM_MayCry" Version="0.0.1" />
<PackageVersion Include="FASM_MayCry" Version="0.0.1" />Directory.Packages.props
<PackageReference Include="FASM_MayCry" />Project file
paket add FASM_MayCry --version 0.0.1
#r "nuget: FASM_MayCry, 0.0.1"
#:package FASM_MayCry@0.0.1
#addin nuget:?package=FASM_MayCry&version=0.0.1Install as a Cake Addin
#tool nuget:?package=FASM_MayCry&version=0.0.1Install as a Cake Tool
Easy Extension Fasm.net Process.net + ExampleS
C# .Net Framework 4.6.1
[System.Security.SuppressUnmanagedCodeSecurityAttribute] // disable security checks for better performance
[System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute(System.Runtime.InteropServices.CallingConvention.Cdecl)] // cdecl - let caller (.NET CLR) clean the stack
delegate IntPtr AssemblyReadRegistersFunction();
IntPtr returnValue=new IntPtr();
@"use32
mov eax, [ebp+4]
ret
".Get_FasmNet_Assemble().Get_Memory()
.Set_ExecuteDelegate[AssemblyReadRegistersFunction](_Delegate ⇒ {returnValue = _Delegate(); })
.Dispose();
;
<dependency id="Fasm.NET" version="1.70.3.2" exclude="Build,Analyzers" />
<dependency id="Process.NET" version="1.0.8" exclude="Build,Analyzers" />
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net461 net461 is compatible. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.0.1 | 480 | 11/28/2022 |
[System.Security.SuppressUnmanagedCodeSecurityAttribute] // disable security checks for better performance
[System.Runtime.InteropServices.UnmanagedFunctionPointerAttribute(System.Runtime.InteropServices.CallingConvention.Cdecl)] // cdecl - let caller (.NET CLR) clean the stack
delegate IntPtr AssemblyReadRegistersFunction();
IntPtr returnValue=new IntPtr();
@"use32
mov eax, [ebp+4]
ret
".Get_FasmNet_Assemble().Get_Memory()
.Set_ExecuteDelegate[AssemblyReadRegistersFunction](_Delegate => {returnValue = _Delegate(); })
.Dispose();
;