String.Format against string.Format. Any issues?

c#, string

Solution

Those are exactly the same. "string" is just an alias for "System.String" in C#

Problem

Is there any performance differences between string.Format and String.Format ? As far as i understand string is a shortcut for System.String and there's no difference between them. Am i right? Thanks!

Original source