call method after constructor

  • Thread starter Thread starter c_xyTopa
  • Start date Start date
C

c_xyTopa

i'd like to call a Method, which is in constructor, asynchron after the
constructor is finished.

Class()
{
Method();
}

How can i do this?
 
I don't understand. A method cannot be "in" the ctor. You want some method
to be called from the ctor asynchronously? Launch a thread then.

--
Chris Tacke
Co-founder
OpenNETCF.org
Are you using the SDF? Let's do a case study.
Email us at d c s @ o p e n n e t c f . c o m
http://www.opennetcf.org/donate
 
I don't understand. A method cannot be "in" the ctor. You want some method
to be called from the ctor asynchronously? Launch a thread then.
right, i need to call a method from a ctor asynchronously.
this method should start executing after ctor created instance of the class.
 
Back
Top