|
From: Nick R. <nic...@fr...> - 2004-04-26 14:24:18
|
I have a colleague who has tried to Mock a DateTime field on an interface:
IFoo
{
DateTime Date
{
get;
set;
}
}
When a mock of IFoo is passed into a client call, access of non-DateTime properties work, but an access to the Date property generates an error about
the object reference being null. Is there a known issue with Dates?
Nick.
|