Sha256: b328178257187853f1a8adef5ace7baeca7aaa3aa544f069f72bd24d02fbb1b2

Contents?: true

Size: 235 Bytes

Versions: 5

Compression:

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

5 entries across 5 versions & 2 rubygems

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