public static void main(string[] args)
		{
			PrecisionModelExample example = new PrecisionModelExample();
			try
			{
				example.Run();
			}
			catch (Exception ex)
			{
                Console.WriteLine(ex.StackTrace);
			}
		}
Example #2
0
        public static void main(string[] args)
        {
            var example = new PrecisionModelExample();

            try
            {
                example.Run();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.StackTrace);
            }
        }