CLARION Date Conversion C# + DATE ADD/SUBTRACT
问题 *(This is for ISV database so I am kind of reverse engineering this and cannot change) ... How can I do the following date to int (visa/versa) conversion in C# ... So Say the Date is: 5/17/2012 it gets converted to int 77207 in the database. At first I thought this was a Julian date however it does not appear to be the case. I was fooling around with the method from Julian Date Question however this does not match up. var date = ConvertToJulian(Convert.ToDateTime("5/17/2012")); Console