コード例 #1
0
ファイル: FilterType.cs プロジェクト: anhdhbn/mlem-backend
 private static Expression MakeString(Expression source)
 {
     return(source.Type == typeof(string) ? source : Expression.Call(source, "ToString", Type.EmptyTypes));
 }