Generating uniform random numbers using Dot Net

In .NET, write a simple web service in C# to generate uniform random numbers. Use the class System.Random to generate the random numbers. What part of the code is specifically associated with web services? How could you deploy the web service?

E

Expert

Verified

using System;
using System.Collections.Generic;
class URN
{
public Double generate()
{
return System.Random();
}
}

   Related Questions in Programming Languages

©TutorsGlobe All rights reserved 2022-2023.