obfuz/Editor/Emit/IDataNodeCreator.cs

8 lines
176 B
C#
Raw Normal View History

namespace Obfuz.Emit
2025-04-20 15:20:13 +08:00
{
public interface IDataNodeCreator
{
IDataNode CreateRandom(DataNodeType type, object value, CreateExpressionOptions options);
}
}