Click here to Skip to main content
15,890,845 members
Home / Discussions / C#
   

C#

 
QuestionMessage Removed Pin
17-Feb-10 11:38
JimBob SquarePants17-Feb-10 11:38 
AnswerRe: Trouble deleting items using generic xml provider. Pin
AspDotNetDev17-Feb-10 12:11
protectorAspDotNetDev17-Feb-10 12:11 
QuestionTreeView Pin
mbangh17-Feb-10 10:58
mbangh17-Feb-10 10:58 
AnswerRe: TreeView Pin
PIEBALDconsult17-Feb-10 12:09
mvePIEBALDconsult17-Feb-10 12:09 
GeneralRe: TreeView Pin
mbangh17-Feb-10 15:02
mbangh17-Feb-10 15:02 
AnswerRe: TreeView Pin
Dan Mos17-Feb-10 17:16
Dan Mos17-Feb-10 17:16 
GeneralRe: TreeView Pin
mbangh18-Feb-10 4:15
mbangh18-Feb-10 4:15 
GeneralRe: TreeView Pin
Dan Mos18-Feb-10 9:59
Dan Mos18-Feb-10 9:59 
QuestionSqlite with c# unsigned long problem Pin
abhinish17-Feb-10 8:09
abhinish17-Feb-10 8:09 
AnswerRe: Sqlite with c# unsigned long problem Pin
Dimitri Witkowski17-Feb-10 9:03
Dimitri Witkowski17-Feb-10 9:03 
GeneralRe: Sqlite with c# unsigned long problem Pin
abhinish17-Feb-10 19:14
abhinish17-Feb-10 19:14 
GeneralRe: Sqlite with c# unsigned long problem Pin
Dimitri Witkowski17-Feb-10 19:29
Dimitri Witkowski17-Feb-10 19:29 
GeneralRe: Sqlite with c# unsigned long problem Pin
abhinish17-Feb-10 22:46
abhinish17-Feb-10 22:46 
QuestionShell Extention Pin
aurelcly17-Feb-10 6:44
aurelcly17-Feb-10 6:44 
AnswerRe: Shell Extention Pin
Keith Barrow17-Feb-10 6:53
professionalKeith Barrow17-Feb-10 6:53 
QuestionWindows Application Management Pin
Ankur .K. Vishwakarma17-Feb-10 6:35
professionalAnkur .K. Vishwakarma17-Feb-10 6:35 
AnswerRe: Windows Application Management Pin
Keith Barrow17-Feb-10 6:43
professionalKeith Barrow17-Feb-10 6:43 
QuestionWaitAny coincident event signalling [solved] Pin
paul_b_baker17-Feb-10 6:14
paul_b_baker17-Feb-10 6:14 
AnswerRe: WaitAny coincident event signalling Pin
Nicholas Butler17-Feb-10 8:29
sitebuilderNicholas Butler17-Feb-10 8:29 
GeneralRe: WaitAny coincident event signalling Pin
paul_b_baker17-Feb-10 21:26
paul_b_baker17-Feb-10 21:26 
GeneralRe: WaitAny coincident event signalling Pin
paul_b_baker17-Feb-10 21:55
paul_b_baker17-Feb-10 21:55 
GeneralRe: WaitAny coincident event signalling Pin
#realJSOP18-Feb-10 0:15
mve#realJSOP18-Feb-10 0:15 
GeneralRe: WaitAny coincident event signalling Pin
Nicholas Butler18-Feb-10 1:48
sitebuilderNicholas Butler18-Feb-10 1:48 
QuestionFind blank element in Array Pin
Sunil G17-Feb-10 3:21
Sunil G17-Feb-10 3:21 
AnswerRe: Find blank element in Array Pin
Keith Barrow17-Feb-10 3:28
professionalKeith Barrow17-Feb-10 3:28 
It depends upon what you mean by "blank" but:

String[] foo = { "", "Hello", "", "World", "How", "are", "You", ""};
Console.WriteLine(foo.Count(x=> string.IsNullOrEmpty(x)));


Should give you some idea.

You'll need to change the predicate x=> string.IsNullOrEmpty(x) to suit your needs.
Dalek Dave: There are many words that some find offensive, Homosexuality, Alcoholism, Religion, Visual Basic, Manchester United, Butter.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.