How would you make this switch statement as fast as possible?

后端 未结 21 2037
别那么骄傲
别那么骄傲 2021-01-30 04:17

2009-12-04 UPDATE: For profiling results on a number of the suggestions posted here, see below!


The Question

Consider the following very

21条回答
  •  借酒劲吻你
    2021-01-30 04:54

    I would put it in dictionary instead of using a switch statement. That being said, it may not make a difference. Or it might. See C# switch statement limitations - why?.

提交回复
热议问题