[Mono-list] Problem with System.Cryptography.RSAParameters...

2003-09-05 Thread Giuseppe Greco
Hi all, does anybody know why the following code does not compile? using System.Cryptography; RSACryptoServiceProvider RSA = new RSACryptoServiceProvider(); ... RSAParameters params = RSA.ExportParameters(false); // does not compile ... The compiler always complies like this: syntax error,

Re: [Mono-list] Problem with System.Cryptography.RSAParameters...

2003-09-05 Thread A Rafael D Teixeira
It is probably a bug in mcs. Report it on bugzilla, but I will also ask a favor, run mcs with the -v option and attach the 'verbose parsing' output it will spit to the bugzilla case. With that monstrous log is easier for the mcs maintainers to diagnose the problem. To make it smaller, compile

RE: [Mono-list] Problem with System.Cryptography.RSAParameters...

2003-09-05 Thread Giuseppe Greco
PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Giuseppe Greco Sent: 5 septembre 2003 16:16 To: Mono Subject: [Mono-list] Problem with System.Cryptography.RSAParameters... Hi all, does anybody know why the following code does not compile