Click here to Skip to main content
15,887,585 members
Home / Discussions / C#
   

C#

 
Questionweather report service Pin
balkang6-Feb-06 8:09
balkang6-Feb-06 8:09 
AnswerRe: weather report service Pin
usernamed6-Feb-06 9:38
usernamed6-Feb-06 9:38 
QuestionDrawLine question Pin
QzRz6-Feb-06 7:23
QzRz6-Feb-06 7:23 
AnswerRe: DrawLine question Pin
Guffa6-Feb-06 7:55
Guffa6-Feb-06 7:55 
QuestionHow to generate 16digit Random number using C# Pin
n_satisha6-Feb-06 7:21
n_satisha6-Feb-06 7:21 
AnswerRe: How to generate 16digit Random number using C# Pin
Colin Angus Mackay6-Feb-06 7:41
Colin Angus Mackay6-Feb-06 7:41 
GeneralRe: How to generate 16digit Random number using C# Pin
leppie6-Feb-06 7:52
leppie6-Feb-06 7:52 
AnswerRe: How to generate 16digit Random number using C# Pin
Guffa6-Feb-06 8:02
Guffa6-Feb-06 8:02 
Complete code? Why? Can't you write any of the code yourself?

Here is how you create a random number between 0 and 9999 and convert it into a four digit string:

Random r = new Random();<br />
string x = r.Next(10000).ToString("0000");


That's the tricky part. That should get you far enough to very easily put together a 16 digit code.

---
b { font-weight: normal; }

AnswerRe: How to generate 16digit Random number using C# Pin
Sebastian Schneider6-Feb-06 10:41
Sebastian Schneider6-Feb-06 10:41 
QuestionHow to menage concurrency with timestamp (C#) Pin
ventomito6-Feb-06 6:59
ventomito6-Feb-06 6:59 
Questionuser-defined data types (definition) Pin
LuluSailor6-Feb-06 6:57
LuluSailor6-Feb-06 6:57 
AnswerRe: user-defined data types (definition) Pin
malharone6-Feb-06 7:05
malharone6-Feb-06 7:05 
QuestionForm Count Pin
deepscyberpulse6-Feb-06 6:46
deepscyberpulse6-Feb-06 6:46 
QuestionToolbar Pin
deepscyberpulse6-Feb-06 6:29
deepscyberpulse6-Feb-06 6:29 
Questionsize=new size() and form.width/height assignment fail to change form size Pin
Sebastian Schneider6-Feb-06 5:17
Sebastian Schneider6-Feb-06 5:17 
AnswerRe: size=new size() and form.width/height assignment fail to change form size Pin
Stanciu Vlad6-Feb-06 5:32
Stanciu Vlad6-Feb-06 5:32 
GeneralRe: size=new size() and form.width/height assignment fail to change form size Pin
Sebastian Schneider6-Feb-06 10:35
Sebastian Schneider6-Feb-06 10:35 
GeneralRe: size=new size() and form.width/height assignment fail to change form size Pin
Stanciu Vlad6-Feb-06 10:49
Stanciu Vlad6-Feb-06 10:49 
QuestionWeird C# String Behavior Pin
malharone6-Feb-06 4:39
malharone6-Feb-06 4:39 
AnswerRe: Weird C# String Behavior Pin
Joe Woodbury6-Feb-06 4:52
professionalJoe Woodbury6-Feb-06 4:52 
AnswerRe: Weird C# String Behavior Pin
Judah Gabriel Himango6-Feb-06 4:55
sponsorJudah Gabriel Himango6-Feb-06 4:55 
GeneralRe: Weird C# String Behavior Pin
malharone6-Feb-06 5:15
malharone6-Feb-06 5:15 
GeneralRe: Weird C# String Behavior Pin
Judah Gabriel Himango6-Feb-06 5:18
sponsorJudah Gabriel Himango6-Feb-06 5:18 
GeneralRe: Weird C# String Behavior Pin
malharone6-Feb-06 5:29
malharone6-Feb-06 5:29 
GeneralRe: Weird C# String Behavior Pin
Judah Gabriel Himango6-Feb-06 7:15
sponsorJudah Gabriel Himango6-Feb-06 7:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.