-
With managed delegates you can do: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
C# 12 will allow you to make a global using alias for pointer types, like |
Beta Was this translation helpful? Give feedback.
C# 12 will allow you to make a global using alias for pointer types, like
global unsafe using MyFunc = delegate*<void>;
. Outside of that, there is no way to declare a specific name for a function pointer definko, just like there is no way to declare a specific name for any other pointer type.