22 lines
461 B
C#
22 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace services
|
|
{
|
|
public static class ServiceCore
|
|
{
|
|
/// <summary>
|
|
/// 获取程序集名称
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public static string GetAssemblyName()
|
|
{
|
|
return Assembly.GetExecutingAssembly().GetName().Name;
|
|
}
|
|
}
|
|
}
|