I am using the nlohmann::Json to converting the map<string,string> to stringJson in c++ side. using that stringjson, I have passed entire Json to C# side using PINVOKE. I am struggling to parse the Json when folder is having multiple data. For example :
recFace_callback_Json :
"{
  \"C:\\\\Images\\\\Cel\\\\05.jpg\":\" [{\\\"acc\\\":1.0,\\\"he\\\":146]\",
   \"C:\\\\Images\\\\Cel\\\\06.jpg\":\"[{\\\"acc\\\":1.0,\\\"he\\\":272}, 
     {\\\"acc\\\":2.0,\\\"he\\\":472}]\"
 }"
Any one ? How to handle all data
 
    