- using System;
- namespace Wrox.ProCSharp.Assemblies.Sharing
- {
- class Client
- {
- [STAThread]
- static void Main(string[] args)
- {
- SharedDemo quotes =
- new SharedDemo(@"C:ProCSharpAssembliesQuotes.txt");
- Console.WriteLine(quotes.GetAssemblyFullName());
- // for (int i=0; i < 3; i++)
- // {
- // Console.WriteLine(quotes.GetQuoteOfTheDay());
- // Console.WriteLine();
- // }
- }
- }
- }