Tagged Questions

1
vote
2answers
290 views

How to get the function name from the ordinal number in a COM dll

Hi, I am trying to get actual function names from their ordinal numbers from a COM dll. I tried using dumpbin.exe but it only returns [NONAME] for each ordinal (except the first few). ordinal …
20
votes
7answers
2k views

Is there an easy way to create ordinals in C#?

Is there an easy way in C# to create Ordinals for a number? For example: 1 returns 1st 2 returns 2nd 3 returns 3rd ...etc Can this be done through String.Format() or are there any functions …
7
votes
8answers
2k views

Is there an easy way in .NET to get “st”, “nd”, “rd” and “th” endings for numbers?

Hi, I am wondering if there is a method or format string I'm missing in .NET to convert the following: 1 to 1st 2 to 2nd 3 to 3rd 4 to 4th 11 to 11th 101 to 101st 111 to 111th This …
0
votes
4answers
853 views

Is there a VB.NET function to format a number as an Ordinal

Hello, The title says it all really, is there a built in VB.NET function to format a number as an Ordinal? Or do I have to write my own? There isn't in C# so I'm thinking their isn't :( Thanks