Click here to Skip to main content
15,909,030 members

Comments by NowONever (Top 7 by date)

NowONever 21-Sep-14 23:09pm View    
Above code and above f'ing useless loop is just added to simulate one my scenario because above loop also taking same time and consumes CPU percentage same as my actual production code.

I think here a i am failed to elaborate question properly..

Sorry for that.. :)
NowONever 21-Sep-14 11:13am View    
Deleted
Why you are considering code inside startSending1 or StartSending2 Methods.. Code can be anything complex code. But i need solution how to handle this complex code in way that it should not consume CPU.

This is the only sample code.
NowONever 21-Sep-14 11:11am View    
Deleted
Why you are considering code inside startSending1 or StartSending2 Methods.. Code can be anything complex code. But i need solution how to handle this complex code in way that it should not consume CPU.

This is the only sample code.
NowONever 21-Sep-14 10:50am View    
Deleted
Hello OriginalGriff,

If i use StartSending1 Methods for all three threads then also i am getting same result and why it is so? Please explain..

sender = new System.Threading.Thread(dataSender.StartSending1);
sender.IsBackground = true;
sender.Start();

sender = new System.Threading.Thread(dataSender2.StartSending1);
sender.IsBackground = true;
sender.Start();

sender = new System.Threading.Thread(dataSender3.StartSending1);
sender.IsBackground = true;
sender.Start();
NowONever 1-Jul-14 5:57am View    
I wanted a solution for compact framework 3.5 c#. I am not using wpf