I'm trying to expand System.TimeSpan in C# because I need a extra method to convert the GameTime to a TimeSpan. This is what i tried:
class TimeSpanner : TimeSpan
{
}
apperently it's not possible to extend the Timespan struct. Does anyone know why it can't be extended? And how do I properly make this work?