krishnaraghava2 opened a new issue, #46182: URL: https://github.com/apache/arrow/issues/46182
### Describe the bug, including details regarding any error messages, version, and platform. I am using Arrow for c# and I see there is a Bug where Date64Array Builder is dropping time Part. Following is sample code to reproduce the issue: [TestMethod] public void TestDateTIme() { Date64Array.Builder builder = new Date64Array.Builder(); builder.Append(new DateTime(2023, 1, 1, 12, 0, 0)); var dateArray = builder.Build(); var dt = dateArray.GetDateTime(0); Assert.AreEqual(new DateTime(2023, 1, 1, 12, 0, 0), dt); } Assert.AreEqual failed. Expected:<1/1/2023 12:00:00 PM>. Actual:<1/1/2023 12:00:00 AM>. ### Component(s) C# -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org