dotmaui.com is Shutting Down
After almost 10 years of running dotmaui.com, it’s time to announce that the project is coming to an end. dotmaui.com and all its services are now in the process of being shut down. dotmaui.com has…
After almost 10 years of running dotmaui.com, it’s time to announce that the project is coming to an end. dotmaui.com and all its services are now in the process of being shut down. dotmaui.com has…
We’ve revamped our design to make your experience even smoother and easier. Now, you can: ✨ Convert your text to Uppercase, Lowercase, Title Case, and more! 📝 Instantly count the number of characters and words…
We just rolled out a major update to .Maui Pastebin! 🎉 You can now edit your pastes after saving them. No more starting from scratch—simply update your content whenever you need. Try it out now…
We’ve just given our hash generation site a major facelift! Our modernized design is not only visually stunning but also enhances your user experience. ✨ What’s New? Sleek, Modern Graphics: Enjoy a refreshed and intuitive…
We’re thrilled to announce that our Sitemap Generator has been updated to version 0.9.14! 🎉 What’s new? ✨ Improved stability to ensure a smoother experience. 🐞 Minor bugs fixed for an even better performance. Thank…
We’ve given our URL encoding and decoding tool a complete makeover, with a sleek new design that’s faster and easier to use than ever before! Here’s why you’ll love it: Speed: Lightning-fast URL encoding and…
🚀 Need to generate UUIDs fast, hassle-free, and ad-free? Look no further! Introducing .Maui UUID Generator, where speed meets simplicity for all your UUID needs. ✨ Speed: Say goodbye to waiting! With lightning-fast generation, get…
🚀 We’ve given a fresh new look to our base64 encoding and decoding service! We’re thrilled to unveil the revamped interface of our tool, designed to provide you with an even better and more intuitive…
DECLARE @MaxId INT SELECT @MaxId = max([Id]) FROM [MyTable] if @MaxId IS NULL SET @MaxId = 0 DBCC CHECKIDENT (‘[MyTable]’, RESEED, @MaxId)
From DateTimeOffset to DateOnly: var myDateOnly = DateOnly.FromDateTime(myDate.Date); From DateOnly to DateTimeOffset: var myDto = new(myDateOnly.Year, myDateOnly.Month, myDateOnly.Day, 0, 0, 0, TimeSpan.FromHours(10));