Skip to main content

Posts

How to parse JSON data with .Net C#?

There are many occasions arise when we have to get some information form websites, websites offer information to their user in different formats and JSON is one of them. Actually you can parse JSON data in C# itself by writing some code but JSON.Net library will help a great deal. Example  Let's consider an example where we have to get tweets count of a webpage from twitter. Twitter provides us with an easy way to do that by simply sending a request to one of its urls Request Sample  https://cdn.api.twitter.com/1/urls/count.json?url=http://download.cnet.com/Free-PDF-to-JPG-Converter/3000-2016_4-75728284.html Request Response string  Response = {" count ":10,"url":"http:\/\/download.cnet.com\/Free-PDF-to-JPG-Converter\/3000-2016_4-75728284.html\/"} Here we go, we need to get count variable from that response. Create a Class in C# and add this code public class SharesCount { private int Count_; public int Count ...

Make the text on your screen easier to read in windows7

Right click on Desktop... And then click Personalize on menu... And then follow these steps...

Adjust for best performance Windows 7 | Adjust for best Appearance Windows 7

Open Control Panel Then Follow these steps

When your windows was installed on your computer

(Start -> Run -> cmd), and enter  systeminfo

PHP Tutorials: Register & Login: User registration

Part1 Part2 Part3 Part4 Part5 Part6