C# class design

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to design a class in C# which should be not be re-entrant. eg
if Thread1 is calling any function on the object of that class then the same
thread should not allowed to call another function on the same object untill
the first call is finished.
 
Back
Top