我有我的劇本有問題的字符串變量,那就是:如何爲不同的值分配給使用的分支,如果條件
string myOutput = "image.png";
if (myOutput.Contains("youtu.be"))
{
string statementOutput = "Video ouput";
}
else
{
if (myOutput.Contains(".png"))
{
string statementOutput = "Image output";
}
else
{
string statementOutput = "Nothing's here";
}
}
Label1.Text = statementOutput;
有了上面的代碼,我得到編譯時錯誤:
The name 'statementOutput' does not exist in the current context
我想要做的是,如果我的字符串例如在myOutput
變量中具有"youtu.be"
,它會將字符串「statementOutput」設置爲值「Video Ouput」,如果它包含.png,則將字符串值更改爲「Image Ouput」並且如果「myOutput」字符串中沒有任何內容,它就會顯示沒什麼。
哦,是的,萬歲的邏輯;)謝謝你! – Kvist