Sha256: b43a769f2b6a93a6db8f0824f2ceef1a219354e2964d6379ff4fc5ffe3309ff4

Contents?: true

Size: 247 Bytes

Versions: 3

Compression:

Stored size: 247 Bytes

Contents

using System;

namespace ClassLibrary
{
	public class ClassWithANonVirtualMethod : IHaveAMethod
	{		
		public 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/ClassWithANonVirtualMethod.cs
orangutan-0.0.2 spec/clr/ClassWithANonVirtualMethod.cs
orangutan-0.0.3 spec/clr/ClassWithANonVirtualMethod.cs