ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/gr2lib/trunk/gr2lib_UnitTest/Program.cs
Revision: 17
Committed: Wed Jul 14 09:24:48 2010 UTC (13 years, 4 months ago) by william
File size: 793 byte(s)
Log Message:
if APIVersions donot match, return from void()

File Contents

# Content
1 using System;
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 return;
22 }
23 else
24 {
25 Console.WriteLine("Loaded granny2.dll: " + _version.APIVersion.Version);
26 }
27 }
28 }
29 }