摘要: 简介:1. One Level 1: public enum Position { C, PF, SF, SG, PG }; 2: 3: public class Player 4: { 5: public string Name { get; set; } 6: public int Number { get; set; } 7: public Position PositionInTeam { get; set; } 8: public ImageSource Imag... 阅读全文
posted @ 2012-12-19 18:13 Allen Li 阅读(3237) 评论(2) 推荐(5) 编辑