Sha256: 15f790af8a85fe437695ab176fc254d9b640bb8897061ab1c0560323e14a22f1

Contents?: true

Size: 343 Bytes

Versions: 5

Compression:

Stored size: 343 Bytes

Contents

using System;

namespace ClassLibrary
{
	public class ClassWithANonVirtualProperty : IHaveAProperty
	{
		private string _MyProperty;
		public string MyProperty
		{
			get
			{
				Console.WriteLine("clr getter called");
				return _MyProperty;
			}
			set
			{
				Console.WriteLine("clr setter called");
				_MyProperty = value;
			}
		}
	}
}

Version data entries

5 entries across 5 versions & 2 rubygems

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