I'm using a WSDL that expects a DateTime parameter for one of the methods. When .NET serializes my call, it creates a date parameter like this:
2010-1-1T10:00:00.00
This looks like the serializer is using a date format of "s". I need a different format, namely one with the timezone offset:
2010-1-1T10:00:00.00 -4:00
How do I specify the date format I want the serializer to use? (C# or VB.NET)