TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
lod
NA
1k
6.1k
How to see if two strings are indentical.
May 19 2005 10:30 AM
As good old structured programmer i like to see if two strings are indentical this way: (stringA == stringB) And, yes, it do what I want. But those who are into object irritated programming soon complain that other languages, like Java, will compare if it is references to the same object, instead of if they contain the same string. Soon a recomendation shows up: (String.Compare(stringA, stringB, false, System.Globalization.CultureInfo.InvariantCulture) == 0) Yes, it still do the same, but ... well ... Argument has that it has far better speed performance. I'm told that the C# compiler optimizes code for speed, and I think that this optimizer should have no problem with such simple expression, so ... eh ...?! And ... to make matters worse ... as far as I'm told ... the first takes into account if they refere to the same object, and thus evaluate very fast if they do!!! So ... What do You think is the best/smartest way of comparing for string equality, and why?
Reply
Answers (
1
)
drop down list depending on first drop down list
windows domain login authentication dialog