Stretto

Results 5 comments of Stretto

something like public void PrintOptionValues() { var props = this.GetType().GetProperties(); foreach(var p in props) { var att = p.GetCustomAttribute(); if (att == null) continue; Console.WriteLine("\t--" + att.LongName + " =...

Nothing except one still has to do conversion. What if you have a mix up enums, strings, and ints? returning a tuple of the correct type would be better. In...

Thanks. I had to resinstall it manually because of notepad++ weirdness. I didn't see any way to sort the favorites by size, type, date, etc. In the file explorer I...

One can get around @nogc attributes by casting. Making the hash function(s) predicates with defaulting to the built in types might be the way to go?

Here is something I just through together that seems to work for the serializer: ``` private void serializeArray (T) (ref T value, string key, Id id) { static if (!is(T...