Using readonly instead of const can be initialized and not modified after that. Is that what you’re looking for?
Code example:
static class MyStaticClass
{
static readonly TimeSpan theTime;
static MyStaticClass()
{
theTime = new TimeSpan(13, 0, 0);
}
}