Paulo Morgado

Results 50 comments of Paulo Morgado

Any update on this?

> * Increasing performance? => I have a feeling that these additional objects & indirection made it slower for most real world usecases. (Perf tests needed to confirm) Sometimes, minimal...

@lukebakken, I haven't looked at the `stringallocations` branch in detail, but I have some generic considerations. If the `stringallocations` branch has 98,479 strings and the `main` branch has 265,205 strings,...

Hi @lukebakken > > If the stringallocations branch has 98,479 strings and the main branch has 265,205 strings, where did those strings go? What are those strings? Can those strings...

I'm assuming the same test conditions, otherwise the tests are not comparable.

Do we have a unit test for this? If not, where/how can it be added?

Should we be concerned about these warnings in the generated code? It's fine to just get rid of the warning with the null forgiving operator. But only if we are...

> You should never ignore warnings as they are hinting to possible errors. You have 3 options: > > * Initialize the field correctly, `default!` is not an option because...

> v13 always initialized `_baseUrl` with `"{{ BaseUrl }}"`. If I understand @RicoSuter well, the the pull request he refers to and became part of v14 simply removed that initialization....

Added ```csharp #pragma warning disable 8618 // Set by constructor via BaseUrl property private string _baseUrl; #pragma restore disable 8618 // Set by constructor via BaseUrl property ``` to PR...