Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

json property C#

public class Videogame
{
    [JsonProperty("name")]
    public string Name { get; set; }

    [JsonProperty("release_date")]
    public DateTime ReleaseDate { get; set; }
}
Source by www.newtonsoft.com #
 
PREVIOUS NEXT
Tagged: #json #property
ADD COMMENT
Topic
Name
2+2 =