SystemEX  Lacking
Additional generic collection types missing in .net
Examples

Delegate representing the native kernel function signature used by this example.
The function performs an addition on two input buffers A and B and writes the result into buffer C.
All buffers are passed as unmanaged pointers along with their sizes. More...

Files

file  ExampleRamKernelAdd.cs
 Beginner-friendly example demonstrating how to use a native RAM-based compute kernel in SystemEx.

Classes

class  KernelRamExamples.ExampleRamKernelAdd
 Example implementation of a RAM‑based compute kernel that adds two integers. More...
class  KernelRamExamples.Programm
 Example program demonstrating how to run the RAM kernel.

Functions

delegate int KernelRamExamples.MyKernelFunction (IntPtr A, int dwSize, IntPtr B, int dwSizeB, IntPtr C)

Detailed Description

Delegate representing the native kernel function signature used by this example.
The function performs an addition on two input buffers A and B and writes the result into buffer C.
All buffers are passed as unmanaged pointers along with their sizes.