ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/gr2lib/trunk/gr2lib_UnitTest/Program.cs
Revision: 44
Committed: Thu Jul 15 04:37:58 2010 UTC (13 years, 4 months ago) by william
File size: 1202 byte(s)
Log Message:
rename _version to apiversion

File Contents

# User Rev Content
1 william 9 using System;
2     using System.Collections.Generic;
3     using System.Text;
4    
5 william 16 using gr2lib.core;
6     using gr2lib.core.apiversion;
7    
8 william 9 namespace gr2lib_UnitTest
9     {
10     class Program
11     {
12     static void Main(string[] args)
13     {
14 william 28 // Setup access to check loaded Granny2 API Version
15 william 44 granny2apiversion apiversion = new granny2apiversion();
16 william 16
17 william 28 // Check if the Loaded API Version Matches
18 william 44 if (!apiversion.apiversionsmatch)
19 william 16 {
20 william 28 // the loaded version does not match
21 william 16 Console.WriteLine("Warning:\n" +
22 william 44 "\t Loaded Granny2 DLL Version: " + apiversion.apiversion.version + "\n" +
23     "\t Expected Version: " + apiversion.expectedapiversion.version);
24 william 28 // return from void to exit application
25 william 17 return;
26 william 16 }
27     else
28     {
29 william 28 // the loaded version matches
30 william 44 Console.WriteLine("Loaded granny2.dll: " + apiversion.apiversion.version);
31 william 16 }
32 william 28 // if we have arrived at this point, the loaded api version matches the what the library was built against
33 william 9 }
34     }
35     }