What is your production take on What is the difference between String and string in?

Pulled from common Stack Overflow threads:

What is your modern answer, and where does the usual advice break down at scale?

Yoshiii

string is just the C# alias for System.String, and in production I use string for declarations but StringComparison-style APIs matter more because the real breakage at scale comes from culture-sensitive comparisons, not the keyword choice.

Sarah :grinning_face_with_smiling_eyes: