flatbuffers/tests/FlatBuffers.Test
Mormegil 0ee1b99c5d [BREAKING CHANGE] Field accessors should use property getters in C#
In C#, plain field accessors should not be nonparametric methods
but should be standard property getters.

The accessor methods with parameters were renamed to `GetXxx`
because a method cannot be named identically to a property.

Also, `ByteBuffer.Position`, `FlatBufferBuilder.Offset` and
`FlatBufferBuilder.DataBuffer` are now properties instead
of nonparametric accessor methods, for more idiomatic C# style.

This is a breaking change, all client C# code accessing these
fields needs to be changed (i.e. remove those `()` or add the
`Get` prefix).

Issue: #77
Change-Id: Iaabe9ada076e5ea2c69911cf6170fdda2df3487e
2015-05-06 11:55:07 -07:00
..
Properties Added Copyright headers 2015-03-11 17:27:38 -07:00
Assert.cs Added Copyright headers 2015-03-11 17:27:38 -07:00
ByteBufferTests.cs C#: Allow ByteBuffer to use faster unsafe mode 2015-01-06 12:39:17 -08:00
FlatBuffers.Test.csproj Fixed C# SizedByteArray copying leading bytes of ByteBuffer. 2015-01-16 15:36:25 -08:00
FlatBuffersExampleTests.cs [BREAKING CHANGE] Field accessors should use property getters in C# 2015-05-06 11:55:07 -07:00
Program.cs Added Copyright headers 2015-03-11 17:27:38 -07:00