Sha256: 6021e91f4c3734e788718946c222ccbfb8b96bdc5096b7a2fd77990860aa8870

Contents?: true

Size: 242 Bytes

Versions: 5

Compression:

Stored size: 242 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

5 entries across 5 versions & 2 rubygems

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