i want to know what is the difference between them and what is the posiible way to use them
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Absolutely no difference. Not even at the IL level. In C#
stringis an alias to the actualSystem.String.NET type. As to the possible use, well, use it whenever you want to represent an empty string in your application. There have been many discussions as to what is the difference betweenstring.Emptyand""and the general consensus is that you should use the one that suits you best and makes your code more readable which obviously is subjective.