﻿<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets  xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
    <CodeSnippet Format="1.0.0">
        <Header>
            <Title> Getting a random number [0, 1.0] using the Random class </Title>
            <Description> Expansion snippet to generate a random number [0, 1.0] using the Random class. </Description>
            <Author>Microsoft Corporation</Author>
            <SnippetTypes>          
                <SnippetType> Expansion </SnippetType>
            </SnippetTypes>
        </Header>
        <Snippet>
            <Declarations>         
            </Declarations>
            <Code Language="vjsharp" Format="CData"><![CDATA[
double dRandomNum = java.lang.Math.random();
$selected$ $end$
]]>
</Code>
        </Snippet>
    </CodeSnippet>
</CodeSnippets>
