Unable to print Current dateTime with a "Type into activity"

Hello everyone,
there one case when i have to automatically enter current date with 00:00 for current Hour, to do so: forum1
CurrentDate = system.DateTime.Now.ToString.Substring(0,11) + "00:00"
When printing this variable with Write line, it gives exactly the result i want, but when typed with the Activity it gives a different date which is not my time zone current One.
Please any explanation for this!!

can you try change currentDate to =
Now.ToString("dd/MM/yyyy 00:00")
(you can change dd/MM/yyyy to your own format)

and also can i see your type into activity?