obfuz/Editor/Virtualization/DataNodes/ConstFromBytesNode.cs

20 lines
464 B
C#
Raw Normal View History

2025-04-20 14:23:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Obfuz.Virtualization
{
public class ConstFromBytesNode : DataNodeAny
{
public override void Compile(CompileContext ctx)
{
2025-04-21 08:58:25 +08:00
// only support Int32, int64, bytes.
// string can only create from StringFromBytesNode
// x = memcpy array.GetRange(index, length);
2025-04-20 14:23:40 +08:00
}
}
}