alix-tlse

Results 12 comments of alix-tlse

Hello, I did the following tests to compare the method call with the "IsEnum" and without. The main difference, for types that do not meet any conditions, is between "TestV6_Obj"...

I tried the approach with a cache ("V7_Cache_..." in the sumary), but it slows down the processing for primitive types. However I found another approach with the "Type.GetTypeCode" method and...

The final version : ``` private static bool IsKnownImmutableTypeV7CodeIf(Type type) { return Type.GetTypeCode(type) != TypeCode.Object || type == typeof(Type) || type == typeof(Guid); } ``` // * Summary * BenchmarkDotNet=v0.13.2,...

Continuation of the performance tests : // * Summary * BenchmarkDotNet=v0.13.2, OS=Windows 10 (10.0.19041.1415/2004/May2020Update/20H1) 11th Gen Intel Core i7-1165G7 2.80GHz, 1 CPU, 8 logical and 4 physical cores .NET SDK=6.0.400...

OK, thanks to all of you @SteveSandersonMS, @javiercn and @campersau ! It was a nice experience, I will wait patiently for the next year release.

Hello @SteveSandersonMS , it's me again with a question :-) # "Type" parameters I think the tests did not pass during my last pull request because i add a test...

> I am wondering if somehow we can override and include our own logic in the future, case by case basis. While I see performance considerations are a crucial aspect,...

Hello, my performance tests, still on my laptop with .NET 6 with a wasm application, gives for a million tests to Equals method : * 3 242 ns without overriding...

I try to fix the following error : >error RS0016: (NETCORE_ENGINEERING_TELEMETRY=Build 'GetHashCode'/'Equals' is not part of the declared API. So I update the PublicAPI.Shipped.txt, but now I have the following...

> Did you update it by hand or did you use the analyzer to update the baseline. It should take care of it automatically. It's all good, I took the...