Concept-Diagnostic ClarityFeature - Function Pointershelp wanted
Repository metrics
- Stars
- (20,414 stars)
- PR merge metrics
- (Avg merge 6d 17h) (256 merged PRs in 30d)
Description
public unsafe void M(delegate*<void> d) {
d->Invoke();
}
This currently gives error CS0193: The * or -> operator must be applied to a pointer. Function pointers are pointers, but they can't be dereferenced and the error could be improved.