/ Published in: C#
This is particularly useful for unit testing, but you could do it anywhere in your code.
Expand |
Embed | Plain Text
//Use TestInitialize to run code before running each test [TestInitialize()] public void MyTestInitialize() { } // Implementation Trace.WriteLine("Tracing my program execution");
You need to login to post a comment.
