using System;
public class Program
{
public static void Main()
// Set desired processDate and runDate, click Run
// Date format YYYY, MM, DD
// Process refunds created on or before this date
DateTime processDate = new DateTime(2018, 2, 16);
// Date SWIFTRefundExport Job will run
DateTime runDate = new DateTime(2018, 3, 26);
Console.WriteLine("offeset-days: " + (processDate - runDate).TotalDays);
}