C# Class Tp.Core.Expressions.InlineableAttribute

When put on a method requires the presense of that's method overload with the same params wrapped into Expression<Func<,>>. For example: [Inlineable] public static TOut Method1(this TIn item) { return Method1().Apply(item); } public static Expression<Func<TIn, TOut>> Method1() { //return expression here }
Inheritance: System.Attribute
Mostra file Open project: TargetProcess/Target-Process-Plugins

Public Methods

Method Description
InlineableAttribute ( string inlineMethodName = null ) : System

Method Details

InlineableAttribute() public method

public InlineableAttribute ( string inlineMethodName = null ) : System
inlineMethodName string
return System