Class1.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:0k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. namespace Wrox.ProCSharp.Assemblies.Sharing
  3. {
  4. class Client
  5. {
  6. [STAThread]
  7. static void Main(string[] args)
  8. {
  9. SharedDemo quotes = 
  10. new SharedDemo(@"C:ProCSharpAssembliesQuotes.txt");
  11. Console.WriteLine(quotes.GetAssemblyFullName());
  12. // for (int i=0; i < 3; i++)
  13. // {
  14. // Console.WriteLine(quotes.GetQuoteOfTheDay());
  15. // Console.WriteLine();
  16. // }
  17. }
  18. }
  19. }