chore: deploy initial linqpad queries

This commit is contained in:
Thom Lamb
2026-05-12 11:33:21 -05:00
parent 0a7a550d46
commit 96d0067f2d
120 changed files with 22939 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<Query Kind="Statements" />
var startDate = DateTime.Now.Date;
var endOfMonth = startDate.AddMonths(1).AddDays(-1).Date;
endOfMonth.Dump();
endOfMonth.Subtract(startDate).TotalDays.Dump();
endOfMonth = endOfMonth.AddMonths(1).AddDays(-1).Date;
endOfMonth.Dump();
endOfMonth.Subtract(startDate).TotalDays.Dump();
endOfMonth = endOfMonth.AddMonths(1).AddDays(-1).Date;
endOfMonth.Dump();
endOfMonth.Subtract(startDate).TotalDays.Dump();
$"{endOfMonth:d}".Dump();
endOfMonth.ToShortDateString().Dump();
$"{endOfMonth}".Dump();
endOfMonth.ToString().Dump();