mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 05:48:37 +00:00
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using IL2CPU.API.Attribs;
|
|
|
|
namespace Cosmos.Core_Plugs.System
|
|
{
|
|
public enum TimeZoneInfoOptions
|
|
{
|
|
None = 0x1,
|
|
NoThrowOnInvalidTime = 0x2
|
|
}
|
|
|
|
|
|
[Plug(typeof(global::System.TimeZoneInfo))]
|
|
class TimeZoneInfoImpl
|
|
{
|
|
public static TimeZoneInfo get_Local()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public static TimeSpan GetUtcOffset(TimeZoneInfo aThis, DateTime aDateTime)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
[PlugMethod(Signature = "System_TimeSpan__System_TimeZoneInfo_GetLocalUtcOffset__System_DateTime_System_TimeZoneInfoOptions_")]
|
|
public static TimeSpan GetLocalUtcOffset(DateTime aDateTime, TimeZoneInfoOptions aOptions)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public static string TryGetLocalizedNameByMuiNativeResource(string aString)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|