initial commit

This commit is contained in:
Arin(asus)
2024-11-26 20:15:16 +09:00
commit 973524ee77
435 changed files with 103766 additions and 0 deletions

28
TrendCtrlII/CTimeinfo.cs Normal file
View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TrendCtrlII
{
public partial class CTimeinfo
{
public Int64 Value { get; set; }
public UInt32 idx { get; set; }
public CTimeinfo(UInt32 _idx, Int64 _val)
{
Value = _val;
idx = _idx;
}
public DateTime DateTimeData
{
get
{
return DateTime.FromFileTime(Value);
}
}
}
}