├── .gitattributes ├── .gitignore ├── About.Designer.cs ├── About.cs ├── About.resx ├── CodeToIl.Designer.cs ├── CodeToIl.cs ├── CodeToIl.resx ├── Controls ├── MethodInstructions.cs └── OfficeBackPanel.cs ├── Dlls ├── Fireball.CodeEditor.SyntaxFiles.dll ├── Fireball.CodeEditor.dll ├── Fireball.Core.dll ├── Fireball.SyntaxDocument.dll ├── Fireball.Win32.dll ├── Fireball.Windows.Forms.dll └── Mono.Cecil.dll ├── EditCode.Designer.cs ├── EditCode.cs ├── EditCode.resx ├── InsertInstruction.Designer.cs ├── InsertInstruction.cs ├── InsertInstruction.resx ├── MSIL.cs ├── Main.Designer.cs ├── Main.cs ├── Main.resx ├── NetDasm.csproj ├── Program.cs ├── Programacion.ico ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings └── Resources └── BackgroundGlossy.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/.gitignore -------------------------------------------------------------------------------- /About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/About.Designer.cs -------------------------------------------------------------------------------- /About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/About.cs -------------------------------------------------------------------------------- /About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/About.resx -------------------------------------------------------------------------------- /CodeToIl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/CodeToIl.Designer.cs -------------------------------------------------------------------------------- /CodeToIl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/CodeToIl.cs -------------------------------------------------------------------------------- /CodeToIl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/CodeToIl.resx -------------------------------------------------------------------------------- /Controls/MethodInstructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Controls/MethodInstructions.cs -------------------------------------------------------------------------------- /Controls/OfficeBackPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Controls/OfficeBackPanel.cs -------------------------------------------------------------------------------- /Dlls/Fireball.CodeEditor.SyntaxFiles.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Dlls/Fireball.CodeEditor.SyntaxFiles.dll -------------------------------------------------------------------------------- /Dlls/Fireball.CodeEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Dlls/Fireball.CodeEditor.dll -------------------------------------------------------------------------------- /Dlls/Fireball.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Dlls/Fireball.Core.dll -------------------------------------------------------------------------------- /Dlls/Fireball.SyntaxDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Dlls/Fireball.SyntaxDocument.dll -------------------------------------------------------------------------------- /Dlls/Fireball.Win32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Dlls/Fireball.Win32.dll -------------------------------------------------------------------------------- /Dlls/Fireball.Windows.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Dlls/Fireball.Windows.Forms.dll -------------------------------------------------------------------------------- /Dlls/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Dlls/Mono.Cecil.dll -------------------------------------------------------------------------------- /EditCode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/EditCode.Designer.cs -------------------------------------------------------------------------------- /EditCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/EditCode.cs -------------------------------------------------------------------------------- /EditCode.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/EditCode.resx -------------------------------------------------------------------------------- /InsertInstruction.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/InsertInstruction.Designer.cs -------------------------------------------------------------------------------- /InsertInstruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/InsertInstruction.cs -------------------------------------------------------------------------------- /InsertInstruction.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/InsertInstruction.resx -------------------------------------------------------------------------------- /MSIL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/MSIL.cs -------------------------------------------------------------------------------- /Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Main.Designer.cs -------------------------------------------------------------------------------- /Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Main.cs -------------------------------------------------------------------------------- /Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Main.resx -------------------------------------------------------------------------------- /NetDasm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/NetDasm.csproj -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Program.cs -------------------------------------------------------------------------------- /Programacion.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Programacion.ico -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /Resources/BackgroundGlossy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ideatic/NetDasm/HEAD/Resources/BackgroundGlossy.png --------------------------------------------------------------------------------