Je voudrais obtenir un horodatage valide dans mon application, alors j'ai écrit:
public static String GetTimestamp(DateTime value)
{
return value.ToString("yyyyMMddHHmmssffff");
}
// ...later on in the code
String timeStamp = GetTimestamp(new DateTime());
Console.WriteLine(timeStamp);
production:
000101010000000000
Je voulais quelque chose comme:
20140112180244
Qu'est ce que j'ai mal fait?