2026-08-27 11:21:58 -06:00
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Obfuscator.Obfuscator.Mutation2;
|
|
|
|
|
|
|
|
|
|
public class FuncMutation
|
|
|
|
|
{
|
|
|
|
|
public static readonly Func<int, int> prao;
|
|
|
|
|
|
|
|
|
|
public static int CharToInt(char shi)
|
|
|
|
|
{
|
|
|
|
|
return shi;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static int RET(int i)
|
|
|
|
|
{
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
}
|