Boo.Lang.Compiler.Steps.EmitAssembly.GetNullableHasValue C# (CSharp) Method

GetNullableHasValue() static private method

static private GetNullableHasValue ( Type type ) : MethodInfo
type System.Type
return System.Reflection.MethodInfo
        static MethodInfo GetNullableHasValue(Type type)
        {
            MethodInfo method;
            if (_Nullable_HasValue.TryGetValue(type, out method))
                return method;
            method = Types.Nullable.MakeGenericType(new Type[] {type}).GetProperty("HasValue").GetGetMethod();
            _Nullable_HasValue.Add(type, method);
            return method;
        }
EmitAssembly