D
Davor
Ok, this is what I want to do:
class test
{
public static void crap1()
{
// This won't work
firstInt = 6;
}
public static void crap2()
{
// Nor will this
firstInt = 2;
}
int firstInt;
]
So, basically, how should I write that
so that both of them can use 'firstInt'?
=================
Davor Babic´
(e-mail address removed)
class test
{
public static void crap1()
{
// This won't work
firstInt = 6;
}
public static void crap2()
{
// Nor will this
firstInt = 2;
}
int firstInt;
]
So, basically, how should I write that
so that both of them can use 'firstInt'?
=================
Davor Babic´
(e-mail address removed)