cjvandyk/Extensions
Extensions.dll contains extension methods that enhance existing C# classes thus making life easier for developers.
C#GPL-3.0
Issues
- 0
System.Logit.Inf(), System.Logit.Wrn(), System.Logit.Err() and System.Logit.Vrb() not producing console output.
#99 opened by cjvandyk - 0
- 1
Per @ehsanyzp: Universal.cs -> GetNthPrime/GetNthPrimeAsync: GetNthPrimeAsync(5) & GetNthPrime(5) returns 9 and the correct answer is 11.
#18 opened by cjvandyk - 1
Per @ehsanyzp: System.Double.cs -> ToX functions: add precision points as an optional parameter in the methods
#17 opened by cjvandyk - 1
Per @ehsanyzp: System.String.cs -> MorseCodeBeep: if frequency is not in the range, it gives exception. With out of range frequencies, you can set it to min or max permitted frequency(or any other default value) or return!
#16 opened by cjvandyk - 0
Per @ehsanyzp: System.String.cs -> LoremIpsum: if paragraphs > 10, it gives exception. For numbers > 10, you can either set it to 10 (or any other default value) in the method or return!
#15 opened by cjvandyk - 0
Per @ehsanyzp: System.String.cs -> Substring: unhandled exceptions (negative and out of index values)
#14 opened by cjvandyk - 1
Per @ehsanyzp: System.Object.cs -> Set/Get: unhandled exceptions (e.g: s.Set("", (object)"xyz") , s.Set("s", (object)"xyz"))
#13 opened by cjvandyk - 1
Per @ehsanyzp: System.Double.cs -> CompoundInterest: unhandled exceptions (negative percentages, percentage more than 100 and negative years)
#11 opened by cjvandyk - 1
Per @ehsanyzp: Universal.cs -> IsEven/IsOdd/IsPrime/sqrt: unhandled exceptions (negative values)
#10 opened by cjvandyk - 1
Per @ehsanyzp: System.Array.cs -> CopyTo: unhandled exceptions (negative values, out of index values)
#7 opened by cjvandyk - 2
Only supports .NET Framework 4.8
#3 opened by BillZulu - 3
Compiler class ambiguity
#2 opened by FranksNix