hey all.

i got a problem here, im getting a cs0162 unreachable code

Using NET Framework 2.0.50727

here is the block its coming from,i commented on the line that is unreachable

Code:
        public void LabelToAffix(Mobile to, int number, AffixType type, string affix, string args)
        {
            string message = StringList.CombineArguments(number, args);

            MessageType label = MessageType.Label;
            if ((type & AffixType.Append) != 0)
                message += affix; //unreachable
            else
                message = affix + message;
            if ((type & AffixType.System) != 0)
                label = MessageType.System;

            to.Send(new AsciiMessage(m_Serial, m_ItemID, label, 0x3B2, 3, "", message));