mirror of
https://gitlab.com/fabinfra/fabaccess/fabaccess-api.git
synced 2025-03-12 14:51:42 +01:00
Add README.md to explain how to work around c# code generation bug
This commit is contained in:
parent
f1a57c44d0
commit
a96876cc76
9
README.md
Normal file
9
README.md
Normal file
@ -0,0 +1,9 @@
|
||||
# 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 );
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user