vb.net to c#
-
How should i convert the following in the c# Dim CurrentAdvice As Integer = New Random().Next(0, 9)
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
-
How should i convert the following in the c# Dim CurrentAdvice As Integer = New Random().Next(0, 9)
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
int CurrentAdvice; Random ra = new Random(CurrentAdvice).Next(0, 9);
Hello Forum Always be in touch to help about the topic ASP.NET
-
How should i convert the following in the c# Dim CurrentAdvice As Integer = New Random().Next(0, 9)
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.
Sonia Gupta wrote:
Dim CurrentAdvice As Integer = New Random().Next(0, 9)
int CurrentAdvice = new Random().Next(0, 9);
Upcoming FREE developer events: * Developer Day Scotland Recent blog posts: * Follow up on hiring a software developer * Aarrgghh!! Accidentally pressing the Caps Lock key My website | blog
-
int CurrentAdvice; Random ra = new Random(CurrentAdvice).Next(0, 9);
Hello Forum Always be in touch to help about the topic ASP.NET
sulabh2020 wrote:
int CurrentAdvice; Random ra = new Random(CurrentAdvice).Next(0, 9);
That is not equivalent to the code posted.
Upcoming FREE developer events: * Developer Day Scotland Recent blog posts: * Follow up on hiring a software developer * Aarrgghh!! Accidentally pressing the Caps Lock key My website | blog
-
How should i convert the following in the c# Dim CurrentAdvice As Integer = New Random().Next(0, 9)
Yesterday is a canceled check. Tomorrow is a promissory note. Today is the ready cash. USE IT.