c#中timespan除法运算已知timespan类型的变量ts,如何运算才能使ts除以60,并返回timespan类型。[解决办法] TimeSpan sp = new TimeSpan(4000);TimeSpan spp = new TimeSpan(sp.Milliseconds / 6000);[解决办法]楼主正解