/// <summary>
 ///		Adds a new Function to the list of formatters
 /// </summary>
 public static MultiFormatterInfoCollection AddSingleGlobal <T, T1, T2, T3, T4>(this IMorestachioFormatterService service, Func <T, T1, T2, T3, T4> function, [CanBeNull] string name = null)
 {
     return(service.AddSingleGlobal((Delegate)function, name));
 }
コード例 #2
0
 /// <summary>
 ///		Adds a new Function to the list of formatters
 /// </summary>
 public static MultiFormatterInfoCollection AddSingleGlobal <T, T1>(this IMorestachioFormatterService service, Func <T, T1> function, string name)
 {
     return(service.AddSingleGlobal((Delegate)function, name));
 }