On Fri, 13 Oct 2006 16:58:32 -0700, "Richard Fateman" fateman@cs.berkeley.edu wrote:
More stuff..
Perhaps a bug in rdnzl, or an assumption by rdnzl violated by .net It would seem that you could do this...
(import-types "System.Threading" "Thread" "ThreadStart")
No. The RDNZL docs say that this tries to load the assembly named "System.Threading". As there is no assembly with that name, the failure is what has to be expected.
But that does not work. Instead you have to do this
(import-type "System.Threading.Thread") (import-type "System.Threading.ThreadStart")
Yep, that's the correct way to do it.