986 reputation
817
bio website
location Kiev, Ukraine
age 33
visits member for 2 years, 1 month
seen 5 hours ago
stats profile views 225

6h
comment \d less efficient than [0-9]
@user1938185 Not "twice". One time to ensure that precompilation is finished, and second time - as many iterations as needed. Here is a post about measuring C# code performance: Benchmarking small code samples in C#
6h
revised Benchmarking small code samples in C#, can this implementation be improved?
edited tags
6h
comment \d less efficient than [0-9]
@user1938185 You suggest that pre-compilation time may be an issue here - create tests that ensure that pre-compilation is complete when the tests are run. For example, run tests twice - first time to ensure that precompilation is finished and GC did not happens during tests, and second time - to produce accurate timings. If you have some other ideas what can interfere with accurate time measurement - create tests that avoid these situations.
7h
comment \d less efficient than [0-9]
Make your own tests and prove that you are right.
7h
comment \d less efficient than [0-9]
OP is not interested in performance comparison of [0-9] and [0123456789] expressions. Moreover OP does not state that difference in performance between them is signigicant. The question is why \d is significantly slower than other two expressions.
12h
comment How to keep date info?
Usually long value is timezone agnostic: if you get it from local time it contains number of milliseconds from local 1/1/1970, if you get it from UTC time it starts from UTC 1/1/1970.
13h
comment How to keep date info?
It's not clear what language/framework you are using. Is it .Net, Java, Javascript?
14h
comment Textfile data not importable to third party application
Check file sizes. Maybe the problem is with encoding, maybe whitespace characters (space, tab, end of line) and their numbers are not the same, etc.
14h
revised Form1_KeyDown NOT WORKING
edited tags
1d
reviewed No Action Needed Get ios multi-value user preferences
1d
reviewed Reviewed vshost32-clr2.exe has stopped working [Faulting module name: cdosys.dll, version: 6.6.7601.17514, time stamp: 0x4ce7b774]
1d
comment vshost32-clr2.exe has stopped working [Faulting module name: cdosys.dll, version: 6.6.7601.17514, time stamp: 0x4ce7b774]
I think the problem was in app code and not in vshosts32-clr.exe. I don't think that disabling Hosting Process will fix the original issue here
1d
reviewed Reviewed Faster way to analyze each sub-window in an image?
1d
revised Faster way to analyze each sub-window in an image?
edited tags
May
17
comment How can I fix location of a child control in form?
Maybe this will help to catch mousewheel: stackoverflow.com/questions/4429901/… . The form has Control.MouseWheel Event, you can try to process it as well.
May
17
revised How can I fix location of a child control in form?
Added Scroll processing suggestion
May
17
comment How can I fix location of a child control in form?
Then you need to add handler on Scroll event and adjust the button position in response to form scrolling. Its ScrollEventArgs argument has ScrollOrientation and NewValue/OldValue to calculate new X/Y position of the control.
May
17
revised How can I fix location of a child control in form?
Panel component has scrolling feature
May
17
answered How can I fix location of a child control in form?
May
17
revised What is the best way to handle 404 and other application Exception in MVC 4.0
edited tags