Search results for query: *

  1. C

    Question How to serialize to xml return type

    ohh sorry. it was my bad here public string SchoolName { get; set; } public int? Age { get; set; } above are correct one
  2. C

    Question How to serialize to xml return type

    yes. here everything is string. so that i can convert later after deserializng. I have already "School" list i just need to send this list as param to get required xml output
  3. C

    Question How to serialize to xml return type

    Hello Everyone, I have below models and i need the return xml response like below. Here how to do this. please help me public class School { public List<Student> StudentList; public int? SchoolID { get; set; } public int? SchoolName { get; set; } } public class...
  4. C

    How to get lt, lg values from string

    Hello Everyone, I have below string, i need to extract lt, lg values into new dictionary if s : N how to do this. please help me "\n{\n\t1619059179095 : \n{\n\tac : 13.0990000;\n\tlg : 58.4269473;\n\tlt : 22.4404507;\n\ts : N\n}\n}" Thanks Chandu
Back
Top Bottom