Latest posts on "c-net"

How to convert String array to List using C#?

2 March 2016

In this article I will explain how to convert String array to List using C#. we can achieve by using .ToList() on array types, this seems to be available only in .Net 3.5+.

How to configure godaddy email account using .net?

1 March 2016

To set up your email client with your email, you need to know your POP or IMAP Email Server Settings and ports. To find them, go to the Email Setup Center and write down the information that displays under Email Server Settings.

How to implement DatePicker using jquery?

28 February 2016

In this article I am going to implement Datepicker using Jquery. While creating form , we mostly require date field and needs more easy to select date by clicking on it . Here when user focus on input field by clicking on it.

how to convert string to int in .net C# ?

26 February 2016

If you have a string such as "456", you cannot do math with it, or use it anywhere you could use an integer unless you first need to convert it to the int type.