A structure that allows to share mutable static data between C# and HPC#.
| Property | Description |
|---|---|
| Data | Get a writable reference to the shared data. |
| UnsafeDataPointer | Get a direct unsafe pointer to the shared data. |
| Method | Description |
|---|---|
| GetOrCreate | Creates a shared static data for the specified context (usable from both C# and HPC#) |
| GetOrCreatePartiallyUnsafeWithHashCode | Creates a shared static data unsafely for the specified context and sub-context (usable from both C# and HPC#). |
| GetOrCreatePartiallyUnsafeWithSubHashCode | Creates a shared static data unsafely for the specified context and sub-context (usable from both C# and HPC#). |
| GetOrCreateUnsafe | Creates a shared static data unsafely for the specified context and sub-context (usable from both C# and HPC#). |