Tag Archives: .Net

LINQPad

I can’t say enough good things about this product. It has made my work so much easier in the short time that I have discovered it.  So, if you are using .Net and you don’t know about LINQ, then learn … Continue reading

Posted in .Net, C#, LINQ | 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