21 lines
392 B
C#
21 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Obfuz.Virtualization
|
|
{
|
|
public class ConstBytesDataNode : DataNodeAny
|
|
{
|
|
|
|
public override void Compile(CompileContext ctx)
|
|
{
|
|
|
|
|
|
// create ldstr
|
|
// RuntimeHelpers.InitializeArray(array, fieldHandle);
|
|
}
|
|
}
|
|
}
|