(string s)
| 540 | }; |
| 541 | |
| 542 | public static string Uncap(string s) |
| 543 | { |
| 544 | return s[0].ToString().ToLower() + s.Substring(1); |
| 545 | } |
| 546 | |
| 547 | public static string ForEachEvent(IEnumerable<dynamic> events, string format, int lenToRemove) |
| 548 | { |
no outgoing calls
no test coverage detected