Petris
Petris
CC#
Created by Mathall on 6/25/2024 in #help
Converting null literal or possible null value to non-nullable type.
but Rust from what I've heard works best there
27 replies
CC#
Created by Mathall on 6/25/2024 in #help
Converting null literal or possible null value to non-nullable type.
not for C# at least
27 replies
CC#
Created by thegu5 on 6/13/2024 in #help
Float (signed) number comparisons compiled to unsigned version of instruction
and signifies how NaN is handled for floats
5 replies
CC#
Created by thegu5 on 6/13/2024 in #help
Float (signed) number comparisons compiled to unsigned version of instruction
iirc the un actually stands for unordered, not unsigned
5 replies
CC#
Created by שלום אני בן עמי on 5/12/2024 in #help
C# array init
which will be slower
85 replies
CC#
Created by שלום אני בן עמי on 5/12/2024 in #help
C# array init
there's also the fact that it calls the constructor through a pointer there
85 replies
CC#
Created by שלום אני בן עמי on 5/12/2024 in #help
C# array init
or actually, not sure about a loop on an MD one
85 replies
CC#
Created by שלום אני בן עמי on 5/12/2024 in #help
C# array init
just note that it'll be slower than a simple loop
85 replies
CC#
Created by שלום אני בן עמי on 5/12/2024 in #help
C# array init
85 replies
CC#
Created by KITAI✨ on 5/6/2024 in #help
✅ How do I understand static typing
I mean both C# and TS while being mainly about static typing, have dynamic typing too
30 replies
CC#
Created by ndeshama on 4/23/2024 in #help
Anyone have thought on Code Signing for .Net Desktop application
well certum OSS seems to be cheaper but normal is more expensive
9 replies
CC#
Created by ndeshama on 4/23/2024 in #help
Anyone have thought on Code Signing for .Net Desktop application
but yeah, afaik you now need either a hardware key or cloud signing like certum and ms do
9 replies
CC#
Created by ndeshama on 4/23/2024 in #help
Anyone have thought on Code Signing for .Net Desktop application
9 replies
CC#
Created by TiEmKej on 4/7/2024 in #help
✅ Time of method differs between Stopwatch.GetTimestamp and DateTime.Now
and you need no objects for it
27 replies
CC#
Created by TiEmKej on 4/7/2024 in #help
✅ Time of method differs between Stopwatch.GetTimestamp and DateTime.Now
you can also do
long start = Stopwatch.GetTimestamp();
// do something
return Stopwatch.GetElapsedTime(start);
long start = Stopwatch.GetTimestamp();
// do something
return Stopwatch.GetElapsedTime(start);
27 replies
CC#
Created by JohnAustin on 4/7/2024 in #help
Accessing private methods when using Reflection.Emit and AssemblyBuilder
4 replies
CC#
Created by divadop on 4/1/2024 in #help
Difference algorithm that Git uses
I think it just defaults to the gnu diff tool for it
10 replies
CC#
Created by divadop on 4/1/2024 in #help
Difference algorithm that Git uses
10 replies
CC#
Created by divadop on 4/1/2024 in #help
Difference algorithm that Git uses
afair it doesn't have anything built in
10 replies
CC#
Created by divadop on 4/1/2024 in #help
Difference algorithm that Git uses
doesn't git use an external tool for diffing?
10 replies