Tag Archives: Programming

Background Worker Threading

I have been dealing a lot with background worker threading at work lately.  It looks so easy that I must be sacrificing something, or there is some hidden drawback to using these worker threads that come pre-canned with .Net Visual … Continue reading

Posted in .Net, C#, computer, software, Work | Tagged , | Leave a comment

C# Code Post Test

1: static void AppendTimestamp(string filename, 2: string message, 3: Encoding encoding = null, 4: DateTime? timestamp = null) 5: { 6: 7: Encoding realEncoding = encoding ?? Encoding.UTF8; 8: DateTime realTimestamp = timestamp ?? DateTime.Now; 9: using (TextWriter writer = … Continue reading

Posted in .Net, C# | Tagged , , , | Leave a comment