#dotnet's
I especially loved the datetime field overflow when passing dotnet's date time.minvalue because we didn't preemptively use datetime2 in the schema lol.
September 16, 2025 at 8:58 PM
The answer is yes. Java has always had a pie-in-the-sky side, somewhat mirroring dotNET's and its makers' talent for marketing. There are solutions that everyone dreams of, with bloated proof of concepts that barely work, versus solutions that work well today.
August 29, 2025 at 11:33 AM
www.code4it.dev/blog/debugge... - #dotNET's [DebuggerDisplay] attribute allows writing a much better debugging message without overriding .ToString(). Nice post www.linkedin.com/in/belloneda....
July 14, 2025 at 3:25 PM
May 27, 2025 at 7:04 PM
ChatGPT just helped me troubleshoot a weird NullReferenceException in dotnet's CLI tool. These things are actually so good at IT lmfao
April 15, 2025 at 10:24 PM
I decided to use C# with my Godot 4.4 project (as it's *probably* closer to TypeScript, which I'm largely comfortable with). I've added dotnet's .editorconfig and set many severity levels to 'warn' rather than 'suggestion'...
March 9, 2025 at 3:43 PM
@captainsafia.com does (or will) #dotnet's OpenApi generator have a way to declare a custom schema transformer for type as an attribute, like we can with JsonConverter?

E.g.:

[OpenApiTransformer()]
public record MyId(int Value);
March 1, 2025 at 11:23 AM
https://dusted.codes/dotenv-in-dotnet - building support for .env files in #dotNET's IConfiguration. Nice code walk-throughs https://www.linkedin.com/in/dustinmoris/.
Using .env in .NET
Programming Adventures
dusted.codes
February 14, 2025 at 4:55 PM
In a browser you could use dotnet's JS Interop, but for server side I think I'd just spin up a separate node server and expose my JS needs as api calls.
January 20, 2025 at 7:48 PM
#GameDev #Programming #Godot #Coding

One thing that keeps throwing me off in Godot C# is that it has several methods that are nearly identical to Dotnet's regular premade methods and Im like "so do I use the godot version? Or the one I know" lol
December 10, 2024 at 10:42 PM
https://jeremybytes.blogspot.com/2022/07/null-forgiving-operator-in-c.html?m=1 - #dotNET's #null forgiving operator. Or said differently "I know what I'm doing". Use it sparingly, but it's incredibly helpful for removing null warnings.
Null Forgiving Operator in C# - !
Over the last couple articles, we have been looking at nullability in C#. When we have nullability enabled, we need to respond to warni...
jeremybytes.blogspot.com
November 20, 2024 at 5:31 PM
All my experiences with dotnet's global.json summarized:

1. Clone a repository that has global.json
2. Build fails because installed SDK is off by 1 nano-version
3. Delete global.json
May 19, 2023 at 10:59 PM
Span/Memory types could be one of #dotnet's underrated features for writing safe and performant code. they even surpass #golang/#swift slices thanks to their read-only variants. https://twitter.com/esesci/status/1501345444986646528
December 5, 2024 at 10:15 PM