diff --git a/net/FlatBuffers/FlatBufferBuilder.cs b/net/FlatBuffers/FlatBufferBuilder.cs
index 07e3180fd..27c16b360 100644
--- a/net/FlatBuffers/FlatBufferBuilder.cs
+++ b/net/FlatBuffers/FlatBufferBuilder.cs
@@ -540,9 +540,9 @@ namespace FlatBuffers
///
/// The index into the vtable
/// The value to put into the buffer. If the value is equal to the default
- /// and is false, the value will be skipped.
+ /// the value will be skipped.
/// The default value to compare the value against
- public void AddOffset(int o, int x, int d) { if (ForceDefaults || x != d) { AddOffset(x); Slot(o); } }
+ public void AddOffset(int o, int x, int d) { if (x != d) { AddOffset(x); Slot(o); } }
/// @endcond
///