This is a test post from a tool I can't discuss as of yet. Let's see
how it handles some basic text formatting.
This is an italic blockquote.
Bold is yummy. So is underlined
text.
Numbered list:
-
Ordered list.
-
List item number 2.
Bulleted list:
And finally, code formatting:
1 // Design pattern for a base class.
2 public class Base: IDisposable
3 {
4 //Implement IDisposable.
5 public void Dispose()
6 {
7 Dispose(true);
8 GC.SuppressFinalize(this);
9 }
10
11 protected virtual void Dispose(bool disposing)
12 {
13 if (disposing)
14 {
15 // Free other state (managed objects).
16 }
17 // Free your own state (unmanaged objects).
18 // Set large fields to null.
19 }
20
21 // Use C# destructor syntax for finalization code.
22 ~Base()
23 {
24 // Simply call Dispose(false).
25 Dispose (false);
26 }
27 }
Ok let's see if this works.
Posted
Feb 08 2006, 06:33 PM
by
Jayson Knight