Click here to Skip to main content
15,887,875 members
Home / Discussions / C#
   

C#

 
QuestionWhat control can add pictures and text horizontally ? Pin
Member 24584679-Mar-17 19:53
Member 24584679-Mar-17 19:53 
AnswerRe: What control can add pictures and text horizontally ? Pin
Ralf Meier9-Mar-17 21:10
mveRalf Meier9-Mar-17 21:10 
AnswerRe: What control can add pictures and text horizontally ? Pin
xiecsuk10-Mar-17 0:01
xiecsuk10-Mar-17 0:01 
AnswerRe: What control can add pictures and text horizontally ? Pin
Gerry Schmitz10-Mar-17 5:53
mveGerry Schmitz10-Mar-17 5:53 
GeneralRe: What control can add pictures and text horizontally ? Pin
Member 245846712-Mar-17 18:26
Member 245846712-Mar-17 18:26 
GeneralRe: What control can add pictures and text horizontally ? Pin
Pete O'Hanlon12-Mar-17 21:23
mvePete O'Hanlon12-Mar-17 21:23 
GeneralRe: What control can add pictures and text horizontally ? Pin
Eddy Vluggen13-Mar-17 1:51
professionalEddy Vluggen13-Mar-17 1:51 
Questionc# out parameter must be assigned.... I don't see the logic [solved] Pin
User 110609799-Mar-17 8:48
User 110609799-Mar-17 8:48 
Dear Experts
Following not a big Thing, I'm more asking where I'm missing the logic.

a.) Example which compiles
C#
public void OutExample_03(out int outValue)
{
    outValue = 0;
    try
    {
    }
    catch (Exception excpt)
    {
        Debug.WriteLine(excpt.Message);
    }
}
b.) Example will not compile.
Message: The Out Parameter 'outValue' must be assigned before control leaves the current method.
C#
public void OutExample_04(out int outValue)
{
    try
    {
        outValue = 0;
    }
    catch (Exception excpt)
    {
        Debug.WriteLine(excpt.Message);
    }
}

Does the Compiler assume for b.) that also enter the "try section" could not happen?

Thank you very much for your comments in advance.

[Edit]
VS 2013 Express.

modified 19-Jan-21 21:04pm.

AnswerRe: c# out parameter must be assigned.... I don't see the logic Pin
Richard Deeming9-Mar-17 10:35
mveRichard Deeming9-Mar-17 10:35 
GeneralRe: c# out parameter must be assigned.... I don't see the logic Pin
User 110609799-Mar-17 10:38
User 110609799-Mar-17 10:38 
GeneralRe: c# out parameter must be assigned.... I don't see the logic Pin
User 110609799-Mar-17 20:28
User 110609799-Mar-17 20:28 
AnswerRe: c# out parameter must be assigned.... I don't see the logic Pin
Ralf Meier9-Mar-17 21:14
mveRalf Meier9-Mar-17 21:14 
GeneralRe: c# out parameter must be assigned.... I don't see the logic Pin
Richard MacCutchan9-Mar-17 21:19
mveRichard MacCutchan9-Mar-17 21:19 
GeneralRe: c# out parameter must be assigned.... I don't see the logic Pin
Pete O'Hanlon9-Mar-17 21:21
mvePete O'Hanlon9-Mar-17 21:21 
GeneralRe: c# out parameter must be assigned.... I don't see the logic Pin
User 1106097910-Mar-17 9:26
User 1106097910-Mar-17 9:26 
GeneralRe: c# out parameter must be assigned.... I don't see the logic Pin
Pete O'Hanlon10-Mar-17 10:41
mvePete O'Hanlon10-Mar-17 10:41 
GeneralRe: c# out parameter must be assigned.... I don't see the logic Pin
User 1106097910-Mar-17 10:47
User 1106097910-Mar-17 10:47 
GeneralRe: c# out parameter must be assigned.... I don't see the logic Pin
Eddy Vluggen10-Mar-17 12:23
professionalEddy Vluggen10-Mar-17 12:23 
QuestionCounter not updating file Pin
xiecsuk9-Mar-17 5:34
xiecsuk9-Mar-17 5:34 
AnswerRe: Counter not updating file Pin
Midi_Mick9-Mar-17 5:59
professionalMidi_Mick9-Mar-17 5:59 
GeneralRe: Counter not updating file Pin
xiecsuk10-Mar-17 0:06
xiecsuk10-Mar-17 0:06 
GeneralRe: Counter not updating file Pin
Midi_Mick10-Mar-17 0:25
professionalMidi_Mick10-Mar-17 0:25 
GeneralRe: Counter not updating file Pin
xiecsuk10-Mar-17 1:22
xiecsuk10-Mar-17 1:22 
GeneralRe: Counter not updating file Pin
Richard Deeming10-Mar-17 1:45
mveRichard Deeming10-Mar-17 1:45 
GeneralRe: Counter not updating file Pin
xiecsuk10-Mar-17 3:53
xiecsuk10-Mar-17 3:53 

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.