Login
Home
KB
Snippets
Current Articles
|
Archives
|
Search
Entries for January 2014
25
Add a Space After a Comma
posted on January 25, 2014 08:00
public string AddSpaceAfterComma(string myInput) { try { String text = myInput.ToString(); text...
[Read the rest of this article...]
string function
,
Regex
Posted in:
C Sharp - C#
Actions:
E-mail
|
Permalink
|
Comments (0)
10
Get the First Day of Next Month in C#
posted on January 10, 2014 06:40
public static DateTime GetFirstDayOfNextMonth(DateTime startDate) { if (startDate.Month == 12) // its end of year , we need to a...
[Read the rest of this article...]
Posted in:
C Sharp - C#
,
private void function()
Actions:
E-mail
|
Permalink
|
Comments (0)