Click here to Skip to main content
15,867,308 members

Comments by millerize (Top 4 by date)

millerize 27-Feb-12 7:25am View    
Deleted
Thanks.
millerize 26-Feb-12 12:57pm View    
Deleted
Can anyone please explain why LinesCount2 is so slow? I thought it should be as fast as the LinesCountIndexOf.
millerize 26-Feb-12 12:54pm View    
Deleted
Can anyone please explain why LinesCount2 is so slow? I thought it should be as fast as the LinesCountIndexOf.
millerize 16-Feb-12 13:16pm View    
Deleted
This is not a correct solution. It only disables the check, but your cross thread calls are still remain illegal. You should not directly access the UI from a worker thread. You should use Invoke, BeginInvoke or pass messages to your UI thread, and then access the UI from the UI thread.