Add README.md to explain how to work around c# code generation bug

This commit is contained in:
Kai Kriegel 2021-09-07 21:29:10 +00:00
parent f1a57c44d0
commit a96876cc76

9
README.md Normal file
View 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 );
```