date time format- date formatting- date time issues in c#.net

Date formatting in c#.net
Date time format in c#
Custom Date Time Format Strings


I'm going to explain to fixing to date time issues (server machine date time and local machine date time mismatch issues).


Date Time format is a common issues for c# developers ....


       internal DateTime ConvertToDateTime(string stringDateTime)
        {
            DateTime dt_finalDateTime;
            string stDateTime;
            try
            {
              dt_finalDateTime = Convert.ToDateTime(stringDateTime);
            }
            catch (Exception e)
            {
                string[] strDate = stringDateTime.Split('/');
                stDateTime = strDate[1] + '/' + strDate[0] + '/' + strDate[2];
                dt_finalDateTime = Convert.ToDateTime(stDateTime);
            }
            return dt_finalDateTime;
        }



ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^