configurator

4,048
Reputation
534 views

Registered User

Name configurator
Member for 1 year
Seen Nov 24 at 12:40
Website
Location Israel
Age 23
C# developer for both WinForms and ASP.NET. I make many little libraries as I need them, and make sure they are always small yet extensible and reusable.
19h
awarded  Necromancer
Nov
25
accepted Long Operation Status
Nov
24
accepted C# Progressbar won’t update with backgroundworker
Nov
24
answered Long Operation Status
Nov
24
answered C# Progressbar won’t update with backgroundworker
Nov
24
comment C# Progressbar won’t update with backgroundworker
The entire point of the background worker is that it takes care of that.
Nov
23
comment Performance surprise with “as” and nullable types
The jitter automatically uses the same variable in these cases (when it's not captured by a lambda or anything). This has been confirmed by Eric Lippert.
Nov
23
comment If I check stream for valid image I can’t write bytes to server
Note that I've posted an answer to your update question
Nov
23
answered If I check stream for valid image I can’t write bytes to server
Nov
23
answered C#: transcribe WAV file to text (speech-to-text) with System.Speech namespaces
Nov
23
comment C#: transcribe WAV file to text (speech-to-text) with System.Speech namespaces
The EmulateRecognize won't help - it's meant to bypass the recognition by giving the recognized output.
Nov
22
comment problem with conversion
Of course, converting a date time like this would make absolutely no sense whatsoever...
Nov
22
answered problem with conversion
Nov
22
comment How to make a select list item selected in asp.net mvc?
I think you need Html.DropDownList("DDL", ViewData["DDL"]), but I'm not sure since I've never used that.
Nov
22
revised Cast concrete class to generic base interface
Editted classes for brevity
Nov
21
comment C# How can I assign a context menu to a tray icon when the tray icon is not on the same form?
Or he could change the Modifiers in the designer to public.
Nov
21
comment How do you convert multistring to/from C# string collection?
The TrimEnd here could be omitted with multiString.Split('\0', StringSplitOptions.RemoveEmptyEntries), since empty strings cannot be stored in a double-null terminated list.
Nov
20
awarded  Notable Question
Nov
14
answered I don’t want to convert solution files when switching from Visual Studio 2008-2010. How?
Nov
6
comment Sending File in Chunks to HttpHandler
What does CopyStream do? Try using a StreamReader and read context.Request.TotalBytes bytes from it.
Nov
5
accepted Unable to generate PDB files in Visual Studio 2005
Nov
5
answered Extending the Enumerable class in c#?
Nov
5
answered System.Web.Mvc.Controller Initialize
Nov
5
accepted Performant intersection and distinct element extraction?
Nov
5
answered Unable to generate PDB files in Visual Studio 2005
Nov
5
comment Performant intersection and distinct element extraction?
Or you can use a new invention - the OrderedHashSet<T>.
Nov
5
revised Performant intersection and distinct element extraction?
added 1088 characters in body
Nov
5
answered Performant intersection and distinct element extraction?
Nov
5
comment C#/.NET: How to get the thread id from a thread?
To use GetThreadId you'd need the handle - which you get from the DONT_USE field.
Nov
5
answered C#/.NET: How to get the thread id from a thread?
Nov
4
comment What C# features would be removed if backwards compatibility were not an issue?
This isn't a C# feature, it's a BCL class, but I agree.
Nov
3
comment Hidden features of x86 assembly language?
XOR was mostly useful because it's one less byte and programs needed to be small back when dinosaurs rules the earth
Nov
3
comment Hidden features of x86 assembly language?
What's a 028? .
Nov
3
comment TimeSpan in lamda expressions
I think you mean .TotalSeconds and not .Seconds - that would always be < 60.
Nov
3
comment How can I rotate an image in .NET and output it to the client as a PNG?
You mean Response.BinaryWrite.
Nov
3
accepted Is there something odd with Powershell and forwards slashes?
Nov
3
answered Is there something odd with Powershell and forwards slashes?
Nov
3
answered Move item to top of list (linq)
Nov
3
comment How can I generate a cryptographically secure pseudorandom number in C#?
Cryptanalysis of the WinAPI GUID generator shows that, since the sequence of V4 GUIDs is pseudo-random, given the initial state one can predict up to the next 250 000 GUIDs returned by the function UuidCreate. This is why GUIDs should not be used in cryptography, e.g., as random keys. (from en.wikipedia.org/wiki/Globally_Unique_Identifier/…)
Nov
3
comment System.Drawing.Image to stream C#
I was just writing that exact same thing!
Nov
3
revised C#: Is using Random and OrderBy a good shuffle algorithm?
Bugfix
Nov
3
comment C#: Is using Random and OrderBy a good shuffle algorithm?
D'oh! I guess I wasn't paying enough attention either...
Nov
3
answered C#: Is using Random and OrderBy a good shuffle algorithm?
Nov
2
awarded  Tumbleweed
Oct
31
comment What is the best Battleship AI?
I don't think that's a bug in the software, I think that's a bug in the "spec" or more correctly in his comment here.
Oct
31
comment C# object reference
Wow. Just wow .
Oct
29
comment What is the best Battleship AI?
And I was starting to think I've been doing something awfully wrong all these years...
Oct
28
comment What is the best Battleship AI?
Don't you find this is a somewhat weird use of rand.NextDouble()? Wouldn't rand.Next(this.gameSize.Width) be simpler?
Oct
26
asked Integrating with Pi Electronique POS system
Oct
14
comment When create a static method
Resharper suggests making private methods static because it is a (very slight) performance increase - the 'this' parameter isn't used so it doesn't need to be given to the method.