BookInfo.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:1k
源码类别:

Windows Mobile

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace DealWithScreenOrientation
  5. {
  6. struct BookInfo
  7. {
  8. public string ISBN;
  9. public string Title;
  10. public string Author;
  11. public string Publisher;
  12. public decimal Price;
  13. public BookInfo(string isbn, string title, string author, string publisher, decimal price)
  14. {
  15. this.ISBN = isbn;
  16. this.Title = title;
  17. this.Author = author;
  18. this.Publisher = publisher;
  19. this.Price = price;
  20. }
  21. private static BookInfo[] ms_books= new BookInfo[]
  22. {
  23. new BookInfo("7-111-11210-5", "Writing Secure Code (2nd Edition)", "Michael Howard", "Microsoft Press", 55.00m),
  24. new BookInfo("7-111-12481-2", "Inside Microsoft .NET IL Assembler", "Serge Lidin", "Microsoft Press", 45.00m),
  25. new BookInfo("7-302-05947-0", "Network Programming For Microsoft Windows", "Anthony Jones", "Microsoft Press", 78.00m),
  26. new BookInfo("7-302-07509-3", "Applied Microsoft .NET Framework Programming", "Jeffrey Richter", "Wintellect", 68.00m),
  27. new BookInfo("7-302-06091-6", "GDI+ Programming: Creating Custom Controls Using C#", "Eric White", "Wrox", 58.00m),
  28. new BookInfo("7-302-05750-8", "Professional ASP.NET Server Controls Building Custom Controls with C#", "Matt Butler", "Wrox", 48.00m),
  29. };
  30. public static BookInfo[] Books
  31. {
  32. get
  33. {
  34. return ms_books;
  35. }
  36. }
  37. }
  38. }