K
Keith Smith
I know I'm probably missing something simple here. I want to have a class
operate within some code like this. I do not want to make the class public
unless I have to. What am I doing wrong?
for (int y=0; y<3; y++)
{
MyStuff;
}
class MyStuff
{
MessageBox.Show("it worked");
}
operate within some code like this. I do not want to make the class public
unless I have to. What am I doing wrong?
for (int y=0; y<3; y++)
{
MyStuff;
}
class MyStuff
{
MessageBox.Show("it worked");
}