Skip to content

Instantly share code, notes, and snippets.

using System;
namespace BotTeam
{
public static class Iso8601DurationParser
{
// Parses ISO 8601 duration (supports full permutations)
public static TimeSpan Parse(string duration)
{
if (string.IsNullOrWhiteSpace(duration) || !duration.StartsWith("P"))