Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
630 views
in Technique[技术] by (71.8m points)

protocol buffers - Creating .proto file for List of List<int> and serialize the json into object not working in C#

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...