29 lines
519 B
C#
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));
|
|
}
|
|
}
|
|
}
|