Alfonso J. Ramos

Results 39 comments of Alfonso J. Ramos

First of all, I can confirm this happens, sadly. The net20, net30, net35 use the metadata format appropriate for their version. I cam't figure out what metadata Unity needs and...

I have been looking into this, I do not think it can be properly done with extension methods. So, I think it will be StreamReaderEx and StreamWriterEx.

Perhaps this can be done with TypedReference, it would not work on early .NET Core. Addendum: Nor early .NET Standard. Perhaps I should do this in a separate assembly.

That I have not dedicated enough time to figure it out

In the light of #138 I want to mention that stackalloc to span uses the pointer constructor ([SharpLab](https://sharplab.io/#v2:EYLgtghgzgLgpgJwDQxASwDZICYgNQA+AAgEwCMAsAFBEDMABKfQML0De19XjDRALPQCyACgCU7TtykBlAA4QAdgB5gAT3gA+erAgBjANZzF9ALzaYe/RAwYA9rvpr4AbTIAGNwF0A3JK4Bfan8gA===)). For example, in https://github.com/TalAloni/SMBLibrary/issues/43 they say: ``` Span buffer = stackalloc byte[NT...

I don't remember exactly, I think it was about the library being in FullTrust or something similar. Edit: Strong Name?

I would like to see a Kidney emoji. The organ. We have a few internal organs: - Brain: 🧠 - Anatomical Heart: 🫀 - Lung: 🫁 Some skeletal emoji: 💀,...

I found myself wanting to do something like this: #if NET30 using Func = System.Converter; #endif

@ekolis see also https://github.com/dotnet/csharplang/issues/3428 Edit: And also https://github.com/dotnet/csharplang/discussions/259 / https://github.com/dotnet/roslyn/issues/7451 I guess.

I did look up into this a while back (I just found this issue), I'll link it here in case it is useful: - old simpler version: https://stackoverflow.com/a/66947013/402022 - new...