using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
string s = "15/8/2018 9:27:31.196 AM";
try
{
DateTime dt = DateTime.Parse(s);
Console.WriteLine("{0}", dt.ToString("dd/MM/yyyy hh:mm:ss.fff tt"));
}
catch (FormatException e)
{
Console.WriteLine(e.Message);
}
}
}
}
/*
run:
15/08/2018 09:27:31.196 AM
*/