The new version of the tarball is now up on the server, so anyone
downloading gyro now will find the csharp.html file in the distribution.

Dave.

-----Original Message-----
From: Dave Berry (Independent Contractor) [mailto:[EMAIL PROTECTED]]

Sent: 05 September 2002 10:10
To: [EMAIL PROTECTED]
Subject: Re: [DOTNET-ROTOR] Small Gyro bug

Thanks for the report.  Regarding documentation, there's a doc file
(csharp.html) missing in the tarball.  I'll add this to the tarball on
the download site, and post a message here when it's ready.  If anyone
has already downloaded the release and would like a copy of this file,
please mail me directly.

Dave.


-----Original Message-----
From: Jeroen Frijters [mailto:[EMAIL PROTECTED]] 
Sent: 05 September 2002 09:55
To: [EMAIL PROTECTED]
Subject: [DOTNET-ROTOR] Small Gyro bug

When I was trying to figure out the constraint syntax (is there any
documentation that I missed?), I ran into the following:

class test
{
  public static T Func<System.IConvertible : T>(T v) { return v; }
}

When you try to compile this, the compiler exits without any error
messages.

BTW, for those who are interested, the correct syntax is:

class test
{
  public static T Func<T>(T v) where T : System.IConvertible { return v;
}
}

Regards,
Jeroen

Reply via email to