Click here to Skip to main content
15,793,452 members
Home / Discussions / C#
   

C#

 
GeneralRe: c# string.IsNullOrEmpty Pin
V.1-Jun-16 2:32
professionalV.1-Jun-16 2:32 
GeneralRe: c# string.IsNullOrEmpty Pin
aspkiddy1-Jun-16 3:50
aspkiddy1-Jun-16 3:50 
QuestionRe: c# string.IsNullOrEmpty Pin
Eddy Vluggen1-Jun-16 3:52
professionalEddy Vluggen1-Jun-16 3:52 
AnswerRe: c# string.IsNullOrEmpty Pin
aspkiddy1-Jun-16 4:05
aspkiddy1-Jun-16 4:05 
GeneralRe: c# string.IsNullOrEmpty Pin
Eddy Vluggen1-Jun-16 6:00
professionalEddy Vluggen1-Jun-16 6:00 
GeneralRe: c# string.IsNullOrEmpty Pin
V.1-Jun-16 3:52
professionalV.1-Jun-16 3:52 
AnswerRe: c# string.IsNullOrEmpty Pin
aspkiddy1-Jun-16 3:56
aspkiddy1-Jun-16 3:56 
GeneralRe: c# string.IsNullOrEmpty Pin
V.1-Jun-16 4:00
professionalV.1-Jun-16 4:00 
if dataMySqlReader["user"] is null this thing will crash I think...
Note that I updated my previous answer by removing the string cast (that was a copy/paste error)...

also this:
C#
string termUser = String.Empty;
termUser = "callow";   // newwwwwwwww

is useless, use:
C#
string termUser = "callow";
V.
(MQOTD rules and previous solutions)

AnswerRe: c# string.IsNullOrEmpty Pin
aspkiddy1-Jun-16 4:08
aspkiddy1-Jun-16 4:08 
GeneralRe: c# string.IsNullOrEmpty Pin
Matt T Heffron1-Jun-16 10:25
professionalMatt T Heffron1-Jun-16 10:25 
GeneralRe: c# string.IsNullOrEmpty Pin
aspkiddy2-Jun-16 6:12
aspkiddy2-Jun-16 6:12 
AnswerRe: c# string.IsNullOrEmpty Pin
Matt T Heffron2-Jun-16 7:20
professionalMatt T Heffron2-Jun-16 7:20 
QuestionDo I Need The Observer Design Pattern In My Situation Pin
MadDashCoder31-May-16 7:12
MadDashCoder31-May-16 7:12 
AnswerRe: Do I Need The Observer Design Pattern In My Situation Pin
Eddy Vluggen31-May-16 20:42
professionalEddy Vluggen31-May-16 20:42 
GeneralRe: Do I Need The Observer Design Pattern In My Situation Pin
MadDashCoder1-Jun-16 1:51
MadDashCoder1-Jun-16 1:51 
GeneralRe: Do I Need The Observer Design Pattern In My Situation Pin
Eddy Vluggen1-Jun-16 1:57
professionalEddy Vluggen1-Jun-16 1:57 
QuestionBack and Forward button for MDI Parent Pin
Rashad Hameed31-May-16 2:26
Rashad Hameed31-May-16 2:26 
AnswerRe: Back and Forward button for MDI Parent Pin
OriginalGriff31-May-16 4:00
mvaOriginalGriff31-May-16 4:00 
GeneralRe: Back and Forward button for MDI Parent Pin
Rashad Hameed31-May-16 12:14
Rashad Hameed31-May-16 12:14 
GeneralRe: Back and Forward button for MDI Parent Pin
OriginalGriff31-May-16 12:37
mvaOriginalGriff31-May-16 12:37 
AnswerRe: Back and Forward button for MDI Parent Pin
Brisingr Aerowing31-May-16 4:00
professionalBrisingr Aerowing31-May-16 4:00 
AnswerRe: Back and Forward button for MDI Parent Pin
BillWoodruff31-May-16 4:36
professionalBillWoodruff31-May-16 4:36 
QuestionVisual Studio 2005 Web Application Problem Pin
Zeyad Jalil31-May-16 1:07
professionalZeyad Jalil31-May-16 1:07 
AnswerRe: Visual Studio 2005 Web Application Problem Pin
Dave Kreskowiak31-May-16 4:45
mveDave Kreskowiak31-May-16 4:45 
QuestionScrape a controls which doesn't have any handle in windows application Pin
Member 1101883831-May-16 0:55
Member 1101883831-May-16 0:55 

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.