dodexahedron

Results 367 comments of dodexahedron

So... I brought this up in another issue, but AoT makes it even more relevant, now: ConfigurationManager may not be prudent to spend significant effort on, for this, because the...

Another biggie that isn't optional at all: P/Invoke All DllImport attributes and the methods they adorn need to be migrated to the new LibraryImport form, which uses source generation and...

Related to #3212, ReSharper is also capable of having custom patterns defined which are then treated as inspections. This would allow, for example, defining a pattern that matches "DllImport" and...

I made some really interesting discoveries about DllImport, LibraryImport, and what all that stuff is REALLY doing.... I'll be posting a discussion for it. I'll link it here when it's...

Here's the discussion post: https://github.com/gui-cs/Terminal.Gui/discussions/3238 I've posted the initial written code and the first level of analysis, with two more to come. I think you'll find it pretty interesting....

Some of this has been mentioned, but I'm just putting more words and detail to stuff. These are some options available: ### Split up the test project First idea, which...

Hahaha Well... I'm trying to take it slow. As I mentioned in the other issue, tests are just code and anything doable in one framework is doable in another or...

And also, another key is I don't want to distract from work on the actual library itself. Hence why I'm happy to lighten the load if any changes to framework...

Huh. I didn't even notice that and my brain filled in "NUnit" the first time, anyway. 😅

Just a thought: Remember that the csharp compiler cannot perform tail call optimization, so use of recursion _usually_ results in slower code than the equivalent iterative approach, which is able...