public static string Render() { var values = Enum.GetValues(typeof(Fixture)); string spool = values.Cast<object>().Aggregate("", (current, value) => current + value + " "); return spool.Trim(); }
No comments:
Post a Comment