ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/gr2lib/trunk/gr2lib_UnitTest/Program.cs
(Generate patch)

Comparing trunk/gr2lib_UnitTest/Program.cs (file contents):
Revision 15 by william, Wed Jul 14 06:31:12 2010 UTC vs.
Revision 16 by william, Wed Jul 14 09:23:41 2010 UTC

# Line 2 | Line 2
2   using System.Collections.Generic;
3   using System.Text;
4  
5 + using gr2lib.core;
6 + using gr2lib.core.apiversion;
7 +
8   namespace gr2lib_UnitTest
9   {
10      class Program
11      {
12          static void Main(string[] args)
13          {
14 +            Granny2APIVersion _version = new Granny2APIVersion();
15 +
16 +            if (!_version.APIVersionsMatch)
17 +            {
18 +                Console.WriteLine("Warning:\n" +
19 +                    "\t Loaded Granny2 DLL Version: " + _version.APIVersion.Version + "\n" +
20 +                    "\t Expected Version: " + _version.ExpectedAPIVersion.Version);
21 +            }
22 +            else
23 +            {
24 +                Console.WriteLine("Loaded granny2.dll: " + _version.APIVersion.Version);
25 +            }
26          }
27      }
28   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines