All pastes #157757 Raw Edit

like this, right?

public text v1 · immutable
#157757 ·published 2006-09-01 19:23 UTC
rendered paste body
using System;

namespace JS.Test
{
	public class Virtual
	{
		public static void Main()
		{

		}

		public abstract class A
		{
			public void Method()
			{
				OtherMethod();
			}

			public abstract void OtherMethod();
		}

		public class B : A
		{
			public override void OtherMethod()
			{
				Console.WriteLine("Concrete implementation");
			}
		}
	}
}