Company: Ubs__
Difficulty: medium
Exceptional Strings body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 20px auto; padding: 0 20px; } h1, h2, h3 { border-bottom: 1px solid #eee; padding-bottom: 10px; } code { background-color: #f4f4f4; padding: 2px 6px; border-radius: 4px; font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; } pre { background-color: #f4f4f4; padding: 15px; border-radius: 5px; overflow-x: auto; } ul { padding-left: 20px; } li { margin-bottom: 10px; } strong { color: #000; } 31. Exceptional Strings Description C# lets a single try block be followed by several catch blocks, and typically each of those blocks is written to handle one particular kind of exception. Writing two catch blocks for the identical exception type is not allowed and will fail to compile, since C# forbids repeating the same exception type across multiple catch blocks on one try .