K
Kyle Jedrusiak
Here is some pseudo code
public class MyClass1
{
...
public void StartSomething()
{
myDelegate.BeginSomething(new AsyncCallback(XXX), YYY);
}
...
}
Should the method XXX be in a seperate class/object than MyClass1 like...
public class MyClass2
{
public void MethodToBeUsedAsTheAsyncCallback()
{
}
}
Kyle!
public class MyClass1
{
...
public void StartSomething()
{
myDelegate.BeginSomething(new AsyncCallback(XXX), YYY);
}
...
}
Should the method XXX be in a seperate class/object than MyClass1 like...
public class MyClass2
{
public void MethodToBeUsedAsTheAsyncCallback()
{
}
}
Kyle!