A Simple code snippet for Console.ReadLine() in c sharp

<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
 <CodeSnippet Format="1.0.0">
  <Header>
   <Title>cr</Title>
   <Shortcut>cr</Shortcut>
   <Description>Code snippet for Console.ReadLine</Description>
   <Author>Microsoft Corporation</Author>
   <SnippetTypes>
    <SnippetType>Expansion</SnippetType>
   </SnippetTypes>
  </Header>
  <Snippet>
   <Declarations>
    <Literal Editable="false">
     <ID>SystemConsole</ID>
     <Function>SimpleTypeName(global::System.Console)</Function>
    </Literal>
   </Declarations>
   <Code Language="csharp"><![CDATA[$SystemConsole$.ReadLine($end$);]]>
   </Code>
  </Snippet>
 </CodeSnippet>
</CodeSnippets>

save it with cr.snippet at this location :-c:\Program Files\Microsoft Visual Studio 8\VC#\Snippets

Now open the visual Studio and type ctr-k and ctr-x
now You can use cr with pressing tab
Thanks..........