Click here to Skip to main content
15,886,362 members
Home / Discussions / C#
   

C#

 
GeneralRe: to access latitudes and longitudes from database Pin
PIEBALDconsult31-Dec-12 6:22
mvePIEBALDconsult31-Dec-12 6:22 
Questionhow to extract tag in regular expressions c# Pin
ngoanrazor30-Dec-12 5:02
ngoanrazor30-Dec-12 5:02 
AnswerRe: how to extract tag in regular expressions c# Pin
PIEBALDconsult30-Dec-12 5:39
mvePIEBALDconsult30-Dec-12 5:39 
GeneralRe: how to extract tag in regular expressions c# Pin
OriginalGriff30-Dec-12 21:20
mveOriginalGriff30-Dec-12 21:20 
GeneralRe: how to extract tag in regular expressions c# Pin
Brisingr Aerowing31-Dec-12 12:16
professionalBrisingr Aerowing31-Dec-12 12:16 
GeneralRe: how to extract tag in regular expressions c# Pin
PIEBALDconsult31-Dec-12 12:24
mvePIEBALDconsult31-Dec-12 12:24 
QuestionBoolean function to return true/false Pin
Member 970415330-Dec-12 2:57
Member 970415330-Dec-12 2:57 
AnswerRe: Boolean function to return true/false Pin
Richard MacCutchan30-Dec-12 4:12
mveRichard MacCutchan30-Dec-12 4:12 
Modify your test so it breaks out of the loop as soon as a match is found
C#
for (int j = 0; j < excelSheets.Length; j++)
{
    if (excelSheets[j] == "Sheet1$")
    {
        Match = true;
        break;
    }
}

//delete the following lines after the loop
C#
if (Match == true)
    return true;
else
    return false;

// add this line after the finally block
C#
return Match;


[edit]
You could actually check the names in your foreach block to make it more efficient.
[/edit]
One of these days I'm going to think of a really clever signature.

GeneralRe: Boolean function to return true/false Pin
Member 970415330-Dec-12 4:18
Member 970415330-Dec-12 4:18 
GeneralRe: Boolean function to return true/false Pin
Richard MacCutchan30-Dec-12 4:25
mveRichard MacCutchan30-Dec-12 4:25 
GeneralRe: Boolean function to return true/false Pin
Member 970415330-Dec-12 5:42
Member 970415330-Dec-12 5:42 
GeneralRe: Boolean function to return true/false Pin
Richard MacCutchan30-Dec-12 5:45
mveRichard MacCutchan30-Dec-12 5:45 
AnswerRe: Boolean function to return true/false Pin
Matt T Heffron3-Jan-13 19:54
professionalMatt T Heffron3-Jan-13 19:54 
GeneralRe: Boolean function to return true/false Pin
Member 97041533-Jan-13 21:00
Member 97041533-Jan-13 21:00 
GeneralRe: Boolean function to return true/false Pin
Member 97041537-Jan-13 9:55
Member 97041537-Jan-13 9:55 
AnswerRe: Boolean function to return true/false Pin
Matt T Heffron7-Jan-13 10:17
professionalMatt T Heffron7-Jan-13 10:17 
GeneralRe: Boolean function to return true/false Pin
Member 97041537-Jan-13 10:26
Member 97041537-Jan-13 10:26 
AnswerRe: Boolean function to return true/false Pin
Matt T Heffron7-Jan-13 11:01
professionalMatt T Heffron7-Jan-13 11:01 
GeneralRe: Boolean function to return true/false Pin
Member 97041537-Jan-13 11:30
Member 97041537-Jan-13 11:30 
GeneralRe: Boolean function to return true/false Pin
Member 97041537-Jan-13 11:57
Member 97041537-Jan-13 11:57 
AnswerRe: Boolean function to return true/false Pin
Matt T Heffron7-Jan-13 12:03
professionalMatt T Heffron7-Jan-13 12:03 
GeneralRe: Boolean function to return true/false Pin
Member 97041537-Jan-13 12:12
Member 97041537-Jan-13 12:12 
AnswerRe: Boolean function to return true/false Pin
Matt T Heffron7-Jan-13 12:29
professionalMatt T Heffron7-Jan-13 12:29 
GeneralRe: Boolean function to return true/false Pin
Member 97041537-Jan-13 12:39
Member 97041537-Jan-13 12:39 
GeneralRe: Boolean function to return true/false Pin
Matt T Heffron7-Jan-13 11:57
professionalMatt T Heffron7-Jan-13 11:57 

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.