public static ResumeEducationsJson LoadType(string path, Boolean writeJson) { using (StreamReader r = new StreamReader(path)) { var deserializer = new Deserializer(); var yamlObject = deserializer.Deserialize(r); var serializer = new Newtonsoft.Json.JsonSerializer(); serializer.Formatting = Newtonsoft.Json.Formatting.Indented; string json; using (StringWriter w = new StringWriter()) { serializer.Serialize(w, yamlObject); json = w.ToString(); } if (writeJson) { string jsonPath = path.Replace("yml", "json"); using (StreamWriter w2 = new StreamWriter(jsonPath)) { w2.Write(json); } } // string json = r.ReadToEnd(); ResumeEducationsJson resumeEducations = JsonConvert.DeserializeObject <ResumeEducationsJson>(json); return(resumeEducations); } }
public static ResumeEducationsJson LoadJson(string path) { using (StreamReader r = new StreamReader(path)) { string json = r.ReadToEnd(); ResumeEducationsJson resumeEducations = JsonConvert.DeserializeObject <ResumeEducationsJson>(json); return(resumeEducations); } }