Sha256: 209cfded1038e2ad51cc99940d7616537696685bee08c2873e5f0a036b98e837

Contents?: true

Size: 349 Bytes

Versions: 5

Compression:

Stored size: 349 Bytes

Contents

using System;

namespace ClassLibrary
{
	public class ClassWithAVirtualProperty : IHaveAProperty
	{
		private string _MyProperty;
		public virtual 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/ClassWithAVirtualProperty.cs
markryall-orangutan-0.0.2 spec/clr/ClassWithAVirtualProperty.cs
markryall-orangutan-0.0.3 spec/clr/ClassWithAVirtualProperty.cs
markryall-orangutan-0.0.4 spec/clr/ClassWithAVirtualProperty.cs
orangutan-0.0.1 spec/ClassWithAVirtualProperty.cs