View Single Post
MasterOfTheXP
Veteran Member
Join Date: Aug 2011
Location: Cloudbank
Old 11-26-2013 , 15:15   Re: Question related to Swich Statements.
Reply With Quote #6

Another situation in which to pretty much always use switch statements instead of if statements are lists like these, where the repetitiveness speaks for itself:
PHP Code:
if (== || == || == || == || == 5) return; 
PHP Code:
switch (i) { case 12345: return; } 
__________________
Plugins / My Steam / TF2 Sandbox (plugin beta testing!)

Last edited by MasterOfTheXP; 11-26-2013 at 15:15.
MasterOfTheXP is offline