SoFunction
Updated on 2025-03-06

C# code to generate random numbers

C# code to generate random numbers

Updated: March 23, 2015 16:18:20 Submission: hebedich
This article mainly introduces the relevant information about the code that generates random numbers in C#. It is very simple and practical. Friends who need it can refer to it.
/// Construct random number seedsstatic int GetRandomSeed()
{
      byte[] bytes = new byte[4];
       rng = new ();
      (bytes);
      return BitConverter.ToInt32(bytes, 0);
} 
 
/// Generate random numbersstatic int rnd() 
{
      
      Random ran = new Random(GetRandomSeed());     
      int cnt = (0,59);
      return cnt;
 }

The above is all about this article. I hope you like it and it will be helpful for you to learn C#.

  • C#
  • Random number

Related Articles

  • Detailed explanation of abstract categories based on C#

    Below, the editor will share with you a detailed explanation of abstract categories based on C#, which has good reference value and hope it will be helpful to everyone. Let's take a look with the editor
    2017-12-12
  • C# generates putty format ppk file

    This article introduces the method of generating putty format ppk files in C#, and the article introduces it in detail through sample code. It has certain reference value for everyone's study or work. Friends who need it can refer to it.
    2022-07-07
  • C# develops camera playback program based on opencv

    This article mainly introduces examples of c# developing camera playback programs based on opencv, helping everyone better understand and learn how to use c#. Interested friends can learn about it.
    2021-03-03
  • Implement MD5 encryption in C# WinForms

    MD5 (Message Digest Algorithm Edition 5) is a widely used hash function that can generate a 128-bit (16-byte) hash value, which is usually used for data integrity checksum password storage, and implements MD5 encryption in Windows Forms applications. It can be used for user password secure storage and data integrity verification. This article will introduce in detail how to implement MD5 encryption in WinForms.
    2024-10-10
  • Example of all regular special character methods in a c# escape string

    This article mainly introduces all regular special characters in c# escape strings. You can refer to it and use it.
    2013-12-12
  • C# implements the function of disguising folders

    This article mainly introduces in detail how to use C# to implement the function of disguising folders. The sample code in the article is explained in detail, which is of some help to our learning C#. Interested friends can follow the editor to learn about it.
    2022-12-12
  • Unity implements simple gesture recognition

    This article mainly introduces the implementation of simple gesture recognition in Unity. The sample code in the article is introduced in detail and has a certain reference value. Interested friends can refer to it.
    2020-07-07
  • C# Component Series An Excel processing tool you deserve

    Another Excel processing artifact. This article mainly introduces third-party components in detail, which have certain reference value. Interested friends can refer to it.
    2016-09-09
  • C# combined with JS modification to solve the problem of KindEditor pop-up layer

    KindEditor is an excellent rich text HTML online editor. Here we talk about a problem encountered in use. When deploying to some WEB application projects, when clicking on the similar pop-up layer function, only the mask layer is displayed, while the content layer positioning cannot be displayed correctly. Therefore, this article introduces to you the problem of KindEditor pop-up layer modification combined with JS.
    2024-06-06
  • Analyze the division classes and division methods in C#

    This article mainly introduces the division classes and division methods in C#, explains the division of class and the division of method definitions. Friends who need it can refer to it
    2016-01-01

Latest Comments