Files
YunTongJackYunTask/Reportapi/FrameWork/Fleck/Helpers/FleckRuntime.cs
2025-07-04 09:50:02 +08:00

19 lines
351 B
C#

using System;
using System.Runtime.InteropServices;
namespace Fleck.Helpers
{
internal static class FleckRuntime
{
public static bool IsRunningOnMono()
{
return Type.GetType("Mono.Runtime") != null;
}
public static bool IsRunningOnWindows()
{
return true;
}
}
}