this is how to use it in Java
Java
------
public enum Direction {
NORTH, SOUTH, EAST, WEST
}
Direction home = Direction.valueOf(“SOUTH”);
C#
------
System.Enum.Parse(typeof(Direction), "SOUTH",true);
Tuesday, January 25, 2011
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment