show/hide this revision's text 2 edited title

Which is preferedpreferred: Regex.Replace() or. aRegexObject.Replace()?

show/hide this revision's text 1

Which is prefered: Regex.Replace() or. aRegexObject.Replace()?

This is a followup to this question

The first two answers are both correct and complete and at the end of the day, produce exactly the same result. However, one uses a Regex object and calls the aRegex.Replace(...) method (Joel's answer) and the other uses the static Regex.Replace(...) method. (CMS' answer).

Which method is preferred?
Under what circumstances would you change your mind?