Tagged Questions
49
votes
7answers
6k 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 ...
2
votes
1answer
125 views
Get the ordinal position while creating selected Item in a LINQ expression
How can I get the ordinal position while creating selected Items in a LINQ expression? For example:
var alphaordinals = new string[] { "A", "B", "C", "D", "E" }; // etc.
var q = from car in ...