mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api.git
synced 2025-03-12 23:01:47 +01:00
10 lines
267 B
Markdown
10 lines
267 B
Markdown
|
# FabAccess API
|
||
|
|
||
|
## Code generation bugs under c#
|
||
|
When returning an Interface it may be required to append a dummy valueto work around a c# code generation bug.
|
||
|
|
||
|
```diff
|
||
|
- whoami @4 () -> ( you :Api.User );
|
||
|
+ whoami @4 () -> ( you :Api.User, dummy :UInt8 = 0 );
|
||
|
```
|