"Ben Maurer" <[EMAIL PROTECTED]> writes: > I am working on improving/rewriting Mono.Math.BigInteger, a class that is essential > for > asymmetrical crypto. My main focus is speed. I have found that using unsafe code can > give > a 20% - 50% speed boost in a couple of functions.
Hi, do you really mean `unsafe' and not `unchecked' - `unsafe' allows you to do unsafe things with pointers like, for instance, getting the address of something - while `uncheck' disables things like overflow checking. -- Martin Baulig [EMAIL PROTECTED] [EMAIL PROTECTED] _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
