-
Notifications
You must be signed in to change notification settings - Fork 0
/
x.cs
61 lines (51 loc) · 1.93 KB
/
x.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
using System;
using System.CodeDom;
using System.CodeDom.Compiler;
using c = System.Diagnostics.Debugger;
using Microsoft.CSharp;
namespace n
{
public sealed class X : ICodeCompiler
{
private X() { }
public static dynamic N => new X();
#pragma warning disable CS0618
public static dynamic I => F.Z ? N : F.M;
#pragma warning restore CS0618
public CompilerResults CompileAssemblyFromDom(CompilerParameters options, CodeCompileUnit compilationUnit)
{
throw new NotImplementedException("EFTConfuser Pending");
}
public CompilerResults CompileAssemblyFromDomBatch(CompilerParameters options, CodeCompileUnit[] compilationUnits)
{
throw new NotImplementedException("EFTConfuser Pending");
}
public CompilerResults CompileAssemblyFromFile(CompilerParameters options, string fileName)
{
throw new NotImplementedException("EFTConfuser Pending");
}
public CompilerResults CompileAssemblyFromFileBatch(CompilerParameters options, string[] fileNames)
{
throw new NotImplementedException("EFTConfuser Pending");
}
public CompilerResults CompileAssemblyFromSource(CompilerParameters options, string source)
{
throw new NotImplementedException("EFTConfuser Pending");
}
public CompilerResults CompileAssemblyFromSourceBatch(CompilerParameters options, string[] sources)
{
throw new NotImplementedException("EFTConfuser Pending");
}
public void hola()
{
Console.WriteLine("Hola mundo");
}
}
internal sealed class F
{
private static dynamic m = new CSharpCodeProvider();
private static bool z { get { return c.IsAttached; } }
public static dynamic Z { get { return z; } }
public static dynamic M { get { return m.CreateCompiler(); } }
}
}