HN user

nodra

154 karma
Posts4
Comments55
View on HN

Trying to understand why it would matter if their hosting provider used ai or not. Genuine question so I can understand your take.

.NET 9 2 years ago

Only generic scenarios that can be resolved and compiled at build time are supported in NativeAOT. So, the statement that “all generic scenarios are supported” is overly broad. I’ll try to avoid such assumptions :).

.NET 9 2 years ago

Last time I tried I had troubles. My understanding is open generics (like List<T>, without specifying T) don’t fully compile because Native AOT lacks a JIT to handle unspecified types at runtime. Closed generics work fine, though, as they’re fully known at compile time. Am I wrong in my thinking?

.NET 9 2 years ago

I meant open generics. My wording was incomplete.

.NET 9 2 years ago

My wording was incorrect. My apologies. I meant open generics (List<T>)