T
trint
Ok,
If I have a process start in a thread other than the "main" of the
program, can that process call other functions that are not in its
thread without any problems? Or do I have to include those functions
in the same "thread" class?
example:
public class mythread
{
public static void thread
{
///do something here
///now call function in another class <-is this OK?
}
}
Thanks,
Trint
If I have a process start in a thread other than the "main" of the
program, can that process call other functions that are not in its
thread without any problems? Or do I have to include those functions
in the same "thread" class?
example:
public class mythread
{
public static void thread
{
///do something here
///now call function in another class <-is this OK?
}
}
Thanks,
Trint