Hi all
I am using Visual Studio 2005 Team Edition and am attempting to instantiate a class using the Create Instance option in the Class View. The constructor has three parameters, two of which are DateTime structures.
My question is: how do I enter a valid DateTime into the Value
box?
I have tried the following to no avail:
28-05-2009 06:00:00
"28-05-2009 06:00:00"
new DateTime("28-05-2009 06:00:00")
new System.DateTime("28-05-2009 06:00:00")
In all cases it just shows a Type Mismatch: 'System.DateTime' expected
error.