07.07.2012, 01:40
Right now I have:
switch (reason)
{
case blabla: formatblablabla;
case bloblo: formatblobloblo;
return blublublu;
}
Am I able to use something like:
switch (reason)
{
case blablabla: formatblublu AND formatbleble
}
Always when I try to add two lines / codes after 1 case it will give me errors...
switch (reason)
{
case blabla: formatblablabla;
case bloblo: formatblobloblo;
return blublublu;
}
Am I able to use something like:
switch (reason)
{
case blablabla: formatblublu AND formatbleble
}
Always when I try to add two lines / codes after 1 case it will give me errors...

