chore: deploy initial linqpad queries
This commit is contained in:
@@ -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();
|
||||
Reference in New Issue
Block a user