16,238 reputation
73463
bio website dallascowboys.com
location Madison, AL
age 42
visits member for 4 years, 4 months
seen 6 hours ago
stats profile views 1,226

My wife and I were married in 1994, and we have four beautiful children.

I'm an avid Dallas Cowboys fan, hence my gravatar.


2d
awarded  Nice Answer
May
16
revised Best way to combine two or more byte arrays in C#
removed previous edit because it was incomplete and mere noise; bolded the EDIT tag
May
16
comment Best way to combine two or more byte arrays in C#
Once you get the required 2000 rep, feel free to edit the answer to your satisfaction. Alternatively, you can post an answer yourself and provide as much clarification as you wish. Until then, your comments will serve to complement my edited answer.
May
16
comment Best way to combine two or more byte arrays in C#
@csauve, Jon Skeet made the same point over 4 years ago, and I addressed it as part of the edit to my answer. I appreciate the clarification, but perhaps commenting after reading the entire answer would be more beneficial in the future.
May
10
awarded  Popular Question
May
8
comment what is the best language to program a service windows
possible duplicate of Easiest language for creating a Windows service
May
1
awarded  Nice Answer
Apr
29
awarded  Nice Answer
Mar
30
awarded  Nice Answer
Mar
23
revised c# fill List with objects specified in call to function
added 22 characters in body
Mar
23
answered c# fill List with objects specified in call to function
Mar
21
awarded  Informed
Mar
20
awarded  Electorate
Mar
1
comment Do I need to terminate Task in windows service in OnStop method?
That's what is meant by any necessary cleanup - releasing unmanaged resources, closing files, closing database connections, etc.
Mar
1
answered Do I need to terminate Task in windows service in OnStop method?
Feb
26
comment How to use Threadpool.QueueUserWorkItem in a windows service?
Let's say that the previous task is still working, and a new task is started. Are you opening database connections? There might be a limit to how many simultaneous connections you can have open. What about the recipient? If they get files from the second task before the first task, is that a problem? The likelihood of events such as these may be small, but a robust system deals with such issues. You know your system better than me, so use your engineering judgment. If the PerformTimerOperation normally takes no longer than a few minutes, I suspect you're ok.
Feb
26
answered How to use Threadpool.QueueUserWorkItem in a windows service?
Feb
22
answered Need to delete objects: implement Dispose or create objects in a function?
Feb
11
comment What is the correct way to create a single instance application?
@OneWorld, see the answers here. stackoverflow.com/questions/624367/…
Feb
11
comment What is the correct way to create a single instance application?
@OneWorld, this solution is agnostic to the UI framework. The example shows how to do it using WinForms, but it'd be just as easy to use in WPF. The solution you posted uses .NET Remoting, a legacy technology that Microsoft retains for backward compatibility only. That's hardly a solution I would endorse. msdn.microsoft.com/en-us/library/kwdt6w2k(v=vs.100).aspx