Exemplo n.º 1
0
Arquivo: test.cs Projeto: mono/gert
	static void Main (string [] args)
	{
		MyAbstractBase gonnaFail = new MyConcrete ();
		gonnaFail.Initialize ();
	}
Exemplo n.º 2
0
    public void UseIt()
    {
        IAmReal rb = new MyConcrete("The String Arg");

        DoTheThing(rb);
    }