In task list item added event i have two methods as below
method1() // execution time : 3 seconds method2() // execution time : 2 seconds
here before completing the method1() executing it automatically moving to the method2() and its started executing. somehow i can understand this is because of the async event. How to resolve this issue?