Exemplo n.º 1
0
        public static string ToRVector(this REvaluationResultProperties properties)
        {
            var fieldNames = _mapping.Where(kv => properties.HasFlag(kv.Key)).Select(kv => "'" + kv.Value + "'");

            return(Invariant($"base::c({string.Join(", ", fieldNames)})"));
        }