Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <CodeSnippets xmlns="">
- <CodeSnippet Format="1.0.0">
- <Header>
- <Title>Try Catch Snippet</Title>
- <Author>C-Sharp HUB</Author>
- <Description>Inserts a try-catch code snippet</Description>
- <Shortcut>tc</Shortcut>
- </Header>
- <Snippet>
- <Code Language="CSharp">
- <![CDATA[
- try
- {
- //TODO: Add your code here
- }
- catch (Exception ex)
- {
- Console.WriteLine(ex.Message);
- }
- ]]>
- </Code>
- </Snippet>
- </CodeSnippet>
- </CodeSnippets>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement