Thoughts from Dan Miser RSS 2.0
 Thursday, January 11, 2007
In Delphi, if you want an array of integers, indexed by an enumeration, you simply do this:

type
  TSuit = (Clubs, Spades, Hearts, Diamonds);
var
  CardCount: array[TSuit] of integer;
...
  CardCount[Clubs] := 13;

In .NET, however, you can not specify an enumerated type as the indexer into an array, so a line by line conversion to C# will not work. Instead, you need to create an entirely new helper class to make the calling code more readable (i.e. without putting casting code in all of the uses of the indexer). Furthermore, you can't use the code below in a Compact Framework (CF) application, because Enum.GetValues() and Enum.GetNames() aren't implemented in the CF libraries.



class Program

{

    static void Main(string[] args)

    {

        CardCounter cc = new CardCounter();

        cc[Suit.Clubs] = 13;

    }

}

 

public enum Suit {Clubs, Spades, Hearts, Diamonds};

 

public class CardCounter

{

    private static int enumCount = Enum.GetValues(typeof(Suit)).Length;

    private int[] counts = new int[enumCount];

 

    public int this[Suit suit]

    {

        get { return counts[(int)suit]; }

        set { counts[(int)suit] = value; }

    }

}

Thursday, January 11, 2007 8:47:32 AM (Central Standard Time, UTC-06:00)  #    Comments [0] -
.NET
Tracked by:
http://9nr-information.info/57359221/index.html [Pingback]
http://9ng-information.info/41716823/index.html [Pingback]
http://9nm-information.info/08951172/index.html [Pingback]
http://9nk-information.info/37057667/harnessed-women-racing.html [Pingback]
http://9ni-information.info/12889314/bootham-bar-hotel-york.html [Pingback]
http://9nt-information.info/42667441/index.html [Pingback]
http://9ns-information.info/31999468/index.html [Pingback]
http://9nc-information.info/39838458/port-canaveral-park-stay-and-cruise.html [Pingback]
http://9nr-information.info/82852560/internet-access-monitoring-australia.html [Pingback]
http://9nn-information.info/02069473/index.html [Pingback]
http://9nx-information.info/44091268/index.html [Pingback]
http://9nc-information.info/98237255/index.html [Pingback]
http://9nk-information.info/62297906/interner-service-dans-wuerzburg2c-allemagne... [Pingback]
http://9nd-information.info/89679871/resume-samples-customer-service-surveys.htm... [Pingback]
http://9nw-information.info/66405481/hallmark-dvd.html [Pingback]
http://9qm-information.info/29517324/esel.html [Pingback]
http://9oa-information.info/44667105/index.html [Pingback]
http://9qa-information.info/91465750/capodimonte-lago.html [Pingback]
http://9oq-information.info/41989399/index.html [Pingback]
http://9qr-information.info/84109072/index.html [Pingback]
http://9oe-information.info/83476228/car-repair-cost-guide.html [Pingback]
http://9oa-information.info/53477936/island-clumber-spaniels.html [Pingback]
http://9sd-information.info/43407824/index.html [Pingback]
http://9rg-information.info/67854155/advertising-internet-marketing-texas.html [Pingback]
http://9ro-information.info/26606947/amsouth-investment-service.html [Pingback]
http://9sr-information.info/90322354/index.html [Pingback]
http://9rk-information.info/85081107/index.html [Pingback]
http://9rp-information.info/26933551/index.html [Pingback]
http://9rh-information.info/59375652/index.html [Pingback]
http://9sm-information.info/24801863/index.html [Pingback]
http://9uafm-le-informazioni.info/96595474/index.html [Pingback]
http://9uaer-le-informazioni.info/71617360/crack-activation-coda-zuma-1-0.html [Pingback]
http://9uafi-le-informazioni.info/48792379/index.html [Pingback]
http://9uafg-le-informazioni.info/60806121/index.html [Pingback]
http://9uafm-le-informazioni.info/32580187/index.html [Pingback]
http://9uaei-le-informazioni.info/20068828/index.html [Pingback]
http://9uaer-le-informazioni.info/52784787/milano-rap.html [Pingback]
http://9uaea-le-informazioni.info/38087375/index.html [Pingback]
http://9uahf-le-informazioni.info/85674993/index.html [Pingback]
http://9uahg-le-informazioni.info/79468634/index.html [Pingback]
http://9uahe-le-informazioni.info/28454565/index.html [Pingback]
http://9uagb-le-informazioni.info/86027816/avermedia-driver.html [Pingback]
Navigation
Archive
<July 2008>
SunMonTueWedThuFriSat
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2008
Dan Miser
Sign In
Statistics
Total Posts: 306
This Year: 21
This Month: 0
This Week: 0
Comments: 603
All Content © 2008, Dan Miser
DasBlog theme 'Business' created by Christoph De Baene (delarou)