Is there a way in .Net to get a string value for an int's word?
        Posted  
        
            by travis
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by travis
        
        
        
        Published on 2010-03-29T16:30:12Z
        Indexed on 
            2010/03/29
            16:33 UTC
        
        
        Read the original article
        Hit count: 261
        
For example:
(1).SomeFunction().Equals("one")
(2).SomeFunction().Equals("two")
I really only need it for digits 1-9 in the case I'm working with, should I just use a switch/select case?
© Stack Overflow or respective owner