• Mormegil's avatar
    Union accessors in C# should use generic type for the table · 221193ea
    Mormegil authored
    When accessing a union field, we should return the same object type
    as was given to the method, i.e. the parameter should have a generic
    type for any Table-derived type. This way, we do not need to make
    superfluous casts (which also reduce type safety) like
    
    var myUnionType = (MyUnionType)buff.GetUnionField(new MyUnionType());
    
    when we can do just
    var myUnionType = buff.GetUnionField(new MyUnionType());
    
    Change-Id: Idac1b638e46cc50b1f2dc19f10741481202b1515
    221193ea
Name
Last commit
Last update
CMake Loading commit data...
android Loading commit data...
biicode Loading commit data...
build Loading commit data...
docs Loading commit data...
go Loading commit data...
include/flatbuffers Loading commit data...
java Loading commit data...
net/FlatBuffers Loading commit data...
samples Loading commit data...
src Loading commit data...
tests Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
.travis.yml Loading commit data...
CMakeLists.txt Loading commit data...
CONTRIBUTING.md Loading commit data...
LICENSE.txt Loading commit data...
biicode.conf Loading commit data...
readme.md Loading commit data...