I am creating a simple POC application to check how protobuff works, In order to test with List of List because our actual application contains the 2D array property in class.
I am having a hard time to defining the proper .proto file so when the protobuff compile the cs file it serialize properly into my object.
Can someone help me to define the proper .proto file for it?
My C# Class
public class Root
{
public List<List<int>> Data { get; set; }
}
My .proto file
syntax = "proto3";
message Root
{
repeated Outer Data=3;
}
message Outer {
repeated Inner Out=1;
}
message Inner {
int32 Inn=1;
}
var serialzeObj= JsonConvert.DeserializeObject<Data>("{'Data':[[1, 2],[3, 4]]}");
It parses the JSON but with an empty object.
Any help in this would be highly appreciated.
question from:
https://stackoverflow.com/questions/65906339/creating-proto-file-for-list-of-listint-and-serialize-the-json-into-object-no 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…