Audit Log Timestamp Format in MIP is different from Management client

  System.Collections.ArrayList groups = VideoOS.Platform.Log.LogClient.Instance.ReadGroups(VideoOS.Platform.EnvironmentManager.Instance.MasterSite.ServerId);
                        VideoOS.Platform.Log.LogClient.Instance.ReadLog(
                        VideoOS.Platform.EnvironmentManager.Instance.MasterSite.ServerId,
                        i,
                        out _result,
                        out _names,
                        "Audit", fromDate.ToUniversalTime(),
                        toDate.ToUniversalTime());
                        var r = _result;
                        var n = _names;
                        totalResult.AddRange(_result);

When i get audit log from This code in component integration Local time field is in dd/MM/yyyy HH:mm:ss

But in Management client it is in dd-MM-yyyy HH:mm:ss

I want to create a date object by using this string. So how can i know what is the date format i will get in MIP SDK

Pls help

I believe that the result you get from the MIP SDK are correct and the issue is to format the DateTime according the the CurrentCulture so that if follows the setup on the PC where it is executed.