// a00ac Example Program Text // Mark 21 Release. NAG Copyright 2004. // C# version, NAG Copyright 2008 using System; using NagLibrary; using System.Globalization; namespace NagDotNetExamples { public class a00ace { public static int Main (string[] args) { bool lmok=false; int ifail; Console.WriteLine("a00ac Example Program Results"); lmok = A00.a00ac(); if (lmok) { Console.WriteLine(" {0}","A valid licence key is available"); } else { Console.WriteLine(" {0}","No valid licence key was found"); } // return 0; } } }