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
Mohamed Moumni
NA
48
8.4k
ignore space and order on searsh c# in textbox
Jun 23 2017 11:17 AM
i use this code to searsh a derictory name
foreach
(
object
str
in
Dossiers.ls_dossier_devis)
{
if
(str.ToString().ToLower().Contains(textBox1.Text.ToLower()))
{
listBox1.Items.Add(str);
}
}
but i want the code ignore space and order of word
can someone help pls ?
Reply
Answers (
2
)
What is Anonymous Classes in C#?
Delete tables from MS SQL Server Database with....