Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Hoisted`2.cs « ExpressionUtil « System.Web.Mvc « src - github.com/mono/aspnetwebstack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67ffdb41678be5365da3411b4ed160cdf4ba8c75 (plain)
1
2
3
4
5
6
7
8
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.

using System.Collections.Generic;

namespace System.Web.Mvc.ExpressionUtil
{
    internal delegate TValue Hoisted<TModel, TValue>(TModel model, List<object> capturedConstants);
}