ive wrote in c++ and understood why exceptions is needed. mostly because of the raii that allow to you to handle all the resources you have in very good and easy way.
but, in c# i cant seem to find any reason to use exceptions. they are make the code slower and require more resources from the system.
what are the advantages of exceptions over c-style enums ? tyvm:)