If you use Live Writer to post articles onto blogspot, you now can use "Insert Code for Windows Live Writer" plug-in for Live Writer. It's more convenient comparing to web page code formatter.
public partial class Window1 : Window
{
public class InnerObject
{
public InnerObject()
{
Debug.WriteLine("InnerObject() ctor.");
}
}
public class Foo
{
private int field = 99;
private InnerObject innerObject = new InnerObject();
public Foo()
{
}
public Foo(int a)
{
}
}
public Window1()
{
InitializeComponent();
Foo foo1 = new Foo();
Foo foo2 = new Foo(12);
}
}
1 comment:
nice work
Post a Comment