> I'm not sure what the 1000x exception rule of thumb is An exception is roughly 1000x as slow as "normal" flow control statements. So the general rule of thumb is that if the exception is likely to occur more than one in a thousand times you perform an operation, you might want to consider a normal return code instead of an exception. Witness Int32.Parse and Int32.TryParse. Or TextReaderForTopic versus HasPermission. :)
------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Flexwiki-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/flexwiki-users
