Skip to content

Instantly share code, notes, and snippets.

@conanak99
Last active April 8, 2016 23:11
Embed
What would you like to do?
public class Student {
public string Name { get; set;}
public int Age { get; set;}
// Format class này dưới dạng text, html, json để in ra
public string GetStudentInfoText() {
return "Name: " + Name + ". Age: " + Age;
}
public string GetStudentInfoHTML() {
return "<span>" + Name + " " + Age + "</span>";
}
public string GetStudentInfoJson() {
return Json.Serialize(this);
}
// Lưu trữ xuống database, xuống file
public void SaveToDatabase() {
dbContext.Save(this);
}
public void SaveToFile() {
Files.Save(this, "fileName.txt");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment