Sha256: 6b122358327e70f685c3e2afb953c4a89f1e88a4990a307c495a8e6c3ec8bf7a

Contents?: true

Size: 255 Bytes

Versions: 3

Compression:

Stored size: 255 Bytes

Contents

using System;

namespace ClassLibrary
{
	public class ClassWithAnVirtualMethod : IHaveAMethod
	{		
		public virtual bool MyMethod(string parameter)
		{
			Console.WriteLine("clr method was called with " + parameter);
			return true;
		}
	}
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
orangutan-0.0.4 spec/clr/ClassWithAVirtualMethod.cs
orangutan-0.0.2 spec/clr/ClassWithAVirtualMethod.cs
orangutan-0.0.3 spec/clr/ClassWithAVirtualMethod.cs