free geoip Test Post From a Tool I Can't Discuss (Yet) - Jayson's Blog - jaysonKnight.com
jaysonKnight.com
Welcome to my corner of the internet

Test Post From a Tool I Can't Discuss (Yet)

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:

  1. Ordered list.
  2. List item number 2.

Bulleted list:

  • Bullet 1.
  • Bullet 2.

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
Filed under: ,

1 Comments

Keyvan Nayyeri wrote re: Test Post From a Tool I Can't Discuss (Yet)
on 02-09-2006 10:42 AM
PostXing is the same tool for this purpose. I use BlogJet and copy source code HTML with CopySourceAsHTML Add-In for Visual Studio.

Add a Comment

(required)  
(optional)
(required)  
Remember Me?

Copyright © :: JaysonKnight.com
External Content © :: Respective Authors

Terms of Service/Privacy Policy