Versões estáticas versus instâncias de Regex.Match em c #

Eu notei algum código que usa o método estático:

Regex.IsMatch([someRegexStr], [someInputStr])

Vale a pena substituí-lo pelo método da instância? Gostar:

private readonly Regex myRegex = new Regex([someRegexStr]);

...

myRegex.IsMatch([someInputStr]);

questionAnswers(4)

yourAnswerToTheQuestion