Jayrock.Json.Conversion.Converters.TestDateTimeExporter.Export C# (CSharp) Method

Export() private static method

private static Export ( System.DateTime value ) : string
value System.DateTime
return string
        private static string Export(DateTime value)
        {
            JsonRecorder writer = new JsonRecorder();
            DateTimeExporter exporter = new DateTimeExporter();
            exporter.Export(new ExportContext(), value, writer);
            return writer.CreatePlayer().ReadString();
        }

Same methods

TestDateTimeExporter::Export ( ) : void