using System; using System.Collections.Generic; using System.Text; using gr2lib.core; using gr2lib.core.apiversion; namespace gr2lib_UnitTest { class Program { static void Main(string[] args) { // Setup access to check loaded Granny2 API Version granny2apiversion apiversion = new granny2apiversion(); // Check if the Loaded API Version Matches if (!apiversion.apiversionsmatch) { // the loaded version does not match Console.WriteLine("Warning:\n" + "\t Loaded Granny2 DLL Version: " + apiversion.apiversion.version + "\n" + "\t Expected Version: " + apiversion.expectedapiversion.version); // return from void to exit application return; } else { // the loaded version matches Console.WriteLine("Loaded granny2.dll: " + apiversion.apiversion.version); } // if we have arrived at this point, the loaded api version matches the what the library was built against } } }