[#5] MemberDataSheet: Add generating a member data sheet

This commit is contained in:
2023-11-30 01:32:11 +01:00
parent 8a6086ba6d
commit 08108f0c18
8 changed files with 473 additions and 1 deletions

View File

@ -146,6 +146,10 @@ namespace Elwig.Helpers {
return CalcCrc16Modbus(Encoding.ASCII.GetBytes(data));
}
public static string FormatIban(string iban) {
return Regex.Replace(iban, ".{4}", "$0 ");
}
public static void RunBackground(string title, Func<Task> a) {
Task.Run(async () => {
try {