We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 335b292 commit fc928fdCopy full SHA for fc928fd
Readme.md
@@ -81,15 +81,15 @@ and compile the protobuffer for C#. After that you are pretty much done.
81
82
Our *SampleObject.proto* looks like this:
83
84
->package Protobuf;
85
->
86
->message SampleObject {
87
-> int32 type = 1;
88
-> string objectName = 2;
89
-> string sampleString = 3;
90
-> int32 sampleInt = 4;
91
-> float sampleFloat = 5;
92
->}
+`package Protobuf;
+
+message SampleObject {
+ int32 type = 1;
+ string objectName = 2;
+ string sampleString = 3;
+ int32 sampleInt = 4;
+ float sampleFloat = 5;
+}`
93
94
It contains a *type* which is **necessary** for all your objects you want to
95
transmit. 2 sample strings, a float and an integer.
0 commit comments