Crate dotnet35_rand_rs

Source
Expand description

一个模拟 .NET 3.5 的 Random 类的库

A library for simulating the .NET 3.5 Random class

用法 Usage:

use dotnet35_rand_rs::DotNet35Random;

fn main() {
  let mut rand = DotNet35Random::new(0);
  println!("{}", rand.next());
}

by shenjackyuanjie

Structs§

DotNet35Const
.NET 3.5 的 Random 类的常量 Constants of .NET 3.5 Random class
DotNet35Random
用于模拟 .NET 3.5 的 Random 类 A struct for simulating the .NET 3.5 Random class