Plane.Libraries/Plane.ConsoleTests/Program.cs
2017-02-27 02:04:13 +08:00

29 lines
519 B
C#

using Plane.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Plane.ConsoleTests
{
class Program
{
static void Main(string[] args)
{
try
{
Foo(null);
}
catch (Exception)
{
//Logger.Instance.Log(ex);
}
}
static void Foo(string kk)
{
throw new ArgumentNullException(nameof(kk));
}
}
}