Robert Brenckman
Robert Brenckman
@NephChevsky - #209 should fix your issue, please review when you get a chance.
Awesome!
Hey, I just realized that `GetAllOptions()` is a thing https://github.com/ardalis/SmartEnum/blob/7117b76bc65dab300073acee7e32f5cf033b9e25/src/SmartEnum/SmartEnum.cs#L64 which I think is what I was looking for? But its currently a private item in the abstract class. Maybe...
In my application I've worked around the issue by wrapping the SmartEnum class provided by this library with an identically named abstract class, so all of my enums will inherit...
My classes are defined like so: ``` public class MyEnum { private MyEnum(string name, int value){ } public static MyEnum FirstValue { get; } = new ("FirstValue",0); } ``` which...
Info update after some testing 👍 I was playing around with the json output of reddit and shreddit. I found that reddit stops reporting results after 34 pages (so thats...
More testing performed on this using the '?limit=100' property for the json request. it appears that no matter how many items per page, the limit (atleast for me) is 888...
https://github.com/j0be/PowerDeleteSuite Not sure what this repo is doing, but from what I've read, they figured out how to go past that limit. Its also a javascript script you run while...
Ah, I had downloaded off of sourceforge, which had been reporting the linked file size instead of 0. So I'm assuming the new scanner is still beta ?
I thought about that, but my reasoning for 462 was that 462 was the recommended version from MS to upgrade to after the release of NetStandard2.0. Targeting 4.6.2 also covers...