Mono.CSharp.HoistedStoreyClass.GetGenericStorey C# (CSharp) Method

GetGenericStorey() public method

public GetGenericStorey ( ) : HoistedStoreyClass
return HoistedStoreyClass
		public HoistedStoreyClass GetGenericStorey ()
		{
			DeclSpace storey = this;
			while (storey != null && storey.CurrentTypeParameters == null)
				storey = storey.Parent;

			return storey as HoistedStoreyClass;
		}
	}