JArray array = new JArray();
array.Add("Manual text");
array.Add(new DateTime(2000, 5, 23));
JObject o = new JObject();
o["MyArray"] = array;
string json = o.ToString();
// {
// "MyArray": [
// "Manual text",
// "2000-05-23T00:00:00"
// ]
// }
Sunday, 10 February 2019
DeSerialization
string json = @"{
'Name': 'Bad Boys',
'ReleaseDate': '1995-4-7T00:00:00',
'Genres': [
'Action',
'Comedy'
]
}";
Movie m = JsonConvert.DeserializeObject<Movie>(json);
string name = m.Name;
// Bad Boys
Serialization
Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Sizes = new string[] { "Small" };
string json = JsonConvert.SerializeObject(product);
// {
// "Name": "Apple",
// "Expiry": "2008-12-28T00:00:00",
// "Sizes": [
// "Small"
// ]
// }
Generate HyperLink With Spaces
Generate HyperLink With Spaces
public ContentResult Test()
{
string URL = "<a href=\'http://testdemo.com/?Name=jay&job title=senior manager' target='_blank\'>Test</a>";
return Content(URL);
}
OR
public ContentResult Test()
{
string URL = "<a href=\'http://testdemo.com/?Name=jay&job%20title=senior%20 manager' target='_blank\'>Test</a>";
return Content(URL);
}
public ContentResult Test()
{
string URL = "<a href=\'http://testdemo.com/?Name=jay&job title=senior manager' target='_blank\'>Test</a>";
return Content(URL);
}
OR
public ContentResult Test()
{
string URL = "<a href=\'http://testdemo.com/?Name=jay&job%20title=senior%20 manager' target='_blank\'>Test</a>";
return Content(URL);
}
Subscribe to:
Posts (Atom)
React Hooks - custom Hook
v CustomHook Ø React allows us to create our own hook which is known as custom hook. Example – 1 localStorage Demo Step-1 Create ...
-
JSON {"employees":[ {"firstName":"John", "lastName":"Doe"}, {"firstName...
-
Ø The useEffect Hook allows you to perform side effect i n your components. Ø Side effects include fetching data, directly updating th...
-
The steps are explained below with screenshots. 1. We need to have a modal container in the main layout page. All the dialogs will be lo...