2
Answers

MSDN

Arezoo Sh

Arezoo Sh

13y
1.5k
1
hi,


I want the codes of Next, NextByte, NextDouble and ToString Methods of Random Class in Visual Studio 2008 or 2010, but my Visual Studio doesnt have help!
Could u pls copy these methods and paste them here for me or tell me where can i download the msdn of Visual studio 2008 or 2010?
Answers (2)
0
Suresh M

Suresh M

NA 18.6k 1.5m 9y
write this code in new class file and you can call it any form
0
Priya M

Priya M

NA 38 4.1k 9y
I also write this code..
 
but how i will call this code on different form .
0
Suresh M

Suresh M

NA 18.6k 1.5m 9y
Regex pattern = new Regex(@"(?<!\d)\d{10}(?!\d)");

    if(pattern.isMatch(socialSecNumber))
    {
        //Do something
        return true;
    }
    else
    {
        return false;
    }