Click here to Skip to main content
15,914,160 members
Home / Discussions / C#
   

C#

 
GeneralRe: usefull tools in c# image processing Pin
Dave Kreskowiak20-Jan-05 13:28
mveDave Kreskowiak20-Jan-05 13:28 
GeneralRe: usefull tools in c# image processing Pin
Christian Graus20-Jan-05 13:37
protectorChristian Graus20-Jan-05 13:37 
GeneralRe: usefull tools in c# image processing Pin
Dennis C. Dietrich20-Jan-05 13:49
Dennis C. Dietrich20-Jan-05 13:49 
GeneralDefault Application running path Pin
StephenMcAllister20-Jan-05 12:53
StephenMcAllister20-Jan-05 12:53 
GeneralRe: Default Application running path Pin
DougW4820-Jan-05 13:05
DougW4820-Jan-05 13:05 
GeneralRe: Default Application running path Pin
Dennis C. Dietrich20-Jan-05 13:14
Dennis C. Dietrich20-Jan-05 13:14 
GeneralRe: Default Application running path Pin
Dave Kreskowiak20-Jan-05 13:25
mveDave Kreskowiak20-Jan-05 13:25 
Generalarray of object Pin
NicklasRing20-Jan-05 12:10
NicklasRing20-Jan-05 12:10 
I have a class that produce a number. I would like to store the class as a object in a array. The problem is that the class only produce a number the first time, and by some reason seems to keep the next time i call it.

Anyone who can help me?? Thanks // Niklaz

point[] m_point = new point[5];

private void button2_Click(object sender, System.EventArgs e)
{
int x;

for(x=0 ; x < 5; x++)
{
point p = new point();
m_point[x] = p ;
}



public class point
{
public int x ;
Random ran = new Random();


public point()
{
x= ran.Next(100);
}
}
GeneralRe: array of object Pin
Christian Graus20-Jan-05 12:22
protectorChristian Graus20-Jan-05 12:22 
GeneralRe: array of object Pin
Dennis C. Dietrich20-Jan-05 13:28
Dennis C. Dietrich20-Jan-05 13:28 
GeneralRe: array of object Pin
Christian Graus20-Jan-05 13:30
protectorChristian Graus20-Jan-05 13:30 
GeneralRe: array of object Pin
Dennis C. Dietrich20-Jan-05 13:33
Dennis C. Dietrich20-Jan-05 13:33 
Generalwindows application vs console application mode Pin
Pilaf20-Jan-05 9:01
Pilaf20-Jan-05 9:01 
GeneralRe: windows application vs console application mode Pin
Dave Kreskowiak20-Jan-05 13:21
mveDave Kreskowiak20-Jan-05 13:21 
GeneralCheck for DVD-ROM Pin
jooky20-Jan-05 8:24
jooky20-Jan-05 8:24 
GeneralThreadPool ThreadSleep issue. Pin
Tristan Rhodes20-Jan-05 8:03
Tristan Rhodes20-Jan-05 8:03 
GeneralC# bittorrents Pin
kshet2620-Jan-05 7:14
kshet2620-Jan-05 7:14 
GeneralRe: C# bittorrents Pin
Heath Stewart20-Jan-05 7:20
protectorHeath Stewart20-Jan-05 7:20 
GeneralArrayList Pin
Newbie_Toy20-Jan-05 6:17
Newbie_Toy20-Jan-05 6:17 
GeneralRe: ArrayList Pin
Heath Stewart20-Jan-05 7:29
protectorHeath Stewart20-Jan-05 7:29 
GeneralRe: ArrayList Pin
Newbie_Toy20-Jan-05 19:25
Newbie_Toy20-Jan-05 19:25 
GeneralRe: ArrayList Pin
Heath Stewart21-Jan-05 5:53
protectorHeath Stewart21-Jan-05 5:53 
GeneralArray Parameter to Method In COM ActiveX Control Pin
tdciswalker20-Jan-05 5:55
tdciswalker20-Jan-05 5:55 
GeneralRe: Array Parameter to Method In COM ActiveX Control Pin
Heath Stewart20-Jan-05 7:18
protectorHeath Stewart20-Jan-05 7:18 
GeneralI've Seriose Problem.. Pin
Shady Aly20-Jan-05 5:32
Shady Aly20-Jan-05 5:32 

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.