RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

switching with 2 variables

arul

Sorceror
Courageous said:
In strict complexity theory, the O() notation that you are invoking ala abracadabra is to express the upper bounds of the compute algorithm.

Sig-worthy :D

Anyway, there's a nice article about undocumented features of strings over at CodeProject, especially the part called 'Efficient String Switches' in the middle of the page.

Strings UNDOCUMENTED.
 

yarex

Wanderer
;) If you want speed, go for if-es, they are always faster then switch.

If you want even more speed, use unsafe code ;).
 
Top