From 811fc89f0eb036d95653f5fed4b0ffea292ce791 Mon Sep 17 00:00:00 2001 From: Jon Skeet Date: Tue, 4 Aug 2015 15:58:39 +0100 Subject: Document everything, and turn on errors if we fail to document anything in the future. --- csharp/src/Google.Protobuf/CodedOutputStream.cs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'csharp/src/Google.Protobuf/CodedOutputStream.cs') diff --git a/csharp/src/Google.Protobuf/CodedOutputStream.cs b/csharp/src/Google.Protobuf/CodedOutputStream.cs index b084c14f..08ea7005 100644 --- a/csharp/src/Google.Protobuf/CodedOutputStream.cs +++ b/csharp/src/Google.Protobuf/CodedOutputStream.cs @@ -297,6 +297,10 @@ namespace Google.Protobuf WriteInt32(value); } + /// + /// Writes an sfixed32 value, without a tag, to the stream. + /// + /// The value to write. public void WriteSFixed32(int value) { WriteRawLittleEndian32((uint) value); @@ -649,6 +653,9 @@ namespace Google.Protobuf } } + /// + /// Flushes any buffered data to the underlying stream (if there is one). + /// public void Flush() { if (output != null) -- cgit v1.2.3