Is this an appropriate way to handle c# switch statements or is an explicit break required still? reference
public static string ToRegistryString(AliceK
You do not need to specifically use a break statement just one that changes the flow of control, so a goto or a return should work.
break
goto
return
See MSDN for more info: http://msdn.microsoft.com/en-us/library/06tc147t(VS.71).aspx