├── .gitignore ├── COPYING.txt ├── CommonAssemblyInfo.cs ├── De4dot.JustDecompile ├── ContextMenuItem.cs ├── De4dot.JustDecompile.Module.csproj ├── De4dot.JustDecompile.Module.csproj.vspscc ├── De4dot │ └── sources │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── AssemblyData │ │ ├── AssemblyData.csproj │ │ ├── AssemblyResolver.cs │ │ ├── AssemblyServer.cs │ │ ├── AssemblyService.cs │ │ ├── DelegateStringDecrypter.cs │ │ ├── EmuStringDecrypter.cs │ │ ├── GenericService.cs │ │ ├── IAssemblyService.cs │ │ ├── IGenericService.cs │ │ ├── IMethodDecrypterService.cs │ │ ├── IStringDecrypter.cs │ │ ├── IStringDecrypterService.cs │ │ ├── IUserGenericService.cs │ │ ├── MethodDecrypterService.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SimpleData.cs │ │ ├── StringDecrypterService.cs │ │ ├── Utils.cs │ │ └── methodsrewriter │ │ │ ├── AssemblyResolver.cs │ │ │ ├── CodeGenerator.cs │ │ │ ├── IMethodsRewriter.cs │ │ │ ├── MField.cs │ │ │ ├── MMethod.cs │ │ │ ├── MModule.cs │ │ │ ├── MType.cs │ │ │ ├── MethodsRewriter.cs │ │ │ ├── Operand.cs │ │ │ ├── Resolver.cs │ │ │ ├── ResolverUtils.cs │ │ │ ├── TypeInstanceResolver.cs │ │ │ └── TypeResolver.cs │ │ ├── AssemblyServer-CLR20-x64 │ │ ├── App.config │ │ ├── AssemblyServer-CLR20-x64.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── AssemblyServer-CLR20 │ │ ├── App.config │ │ ├── AssemblyServer-CLR20.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── AssemblyServer-CLR40-x64 │ │ ├── App.config │ │ ├── AssemblyServer-CLR40-x64.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── AssemblyServer-CLR40 │ │ ├── App.config │ │ ├── AssemblyServer-CLR40.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── AssemblyServer-x64 │ │ ├── App.config │ │ ├── AssemblyServer-x64.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── AssemblyServer │ │ ├── App.config │ │ ├── AssemblyServer.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── COPYING │ │ ├── LICENSE.ICSharpCode.SharpZipLib.txt │ │ ├── LICENSE.QuickLZ.txt │ │ ├── LICENSE.de4dot.txt │ │ ├── LICENSE.dnlib.txt │ │ ├── LICENSE.lzmat.txt │ │ ├── LICENSE.randomc.txt │ │ ├── README.md │ │ ├── Test.Rename.Dll │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Test.Rename.Dll.csproj │ │ └── Tests.cs │ │ ├── Test.Rename │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Test.Rename.csproj │ │ ├── de4dot-x64 │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── de4dot-x64.csproj │ │ ├── de4dot.blocks │ │ ├── BaseBlock.cs │ │ ├── Block.cs │ │ ├── Blocks.cs │ │ ├── BlocksSorter.cs │ │ ├── CodeGenerator.cs │ │ ├── DeadBlocksRemover.cs │ │ ├── DotNetUtils.cs │ │ ├── DumpedMethod.cs │ │ ├── DumpedMethods.cs │ │ ├── FilterHandlerBlock.cs │ │ ├── ForwardScanOrder.cs │ │ ├── GenericArgsSubstitutor.cs │ │ ├── HandlerBlock.cs │ │ ├── Instr.cs │ │ ├── InstructionListParser.cs │ │ ├── MemberDefDict.cs │ │ ├── MethodBlocks.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ScopeBlock.cs │ │ ├── StackTracePatcher.cs │ │ ├── TryBlock.cs │ │ ├── TryHandlerBlock.cs │ │ ├── Utils.cs │ │ ├── cflow │ │ │ ├── BlockCflowDeobfuscator.cs │ │ │ ├── BlockDeobfuscator.cs │ │ │ ├── BlocksCflowDeobfuscator.cs │ │ │ ├── BranchEmulator.cs │ │ │ ├── CachedCflowDeobfuscator.cs │ │ │ ├── CflowDeobfuscator.cs │ │ │ ├── CflowUtils.cs │ │ │ ├── ConstantsFolder.cs │ │ │ ├── DeadCodeRemover.cs │ │ │ ├── DeadStoreRemover.cs │ │ │ ├── DupBlockDeobfuscator.cs │ │ │ ├── IBlocksDeobfuscator.cs │ │ │ ├── ICflowDeobfuscator.cs │ │ │ ├── InstructionEmulator.cs │ │ │ ├── Int32Value.cs │ │ │ ├── Int64Value.cs │ │ │ ├── MethodCallInliner.cs │ │ │ ├── MethodCallInlinerBase.cs │ │ │ ├── Real8Value.cs │ │ │ ├── StLdlocFixer.cs │ │ │ ├── SwitchCflowDeobfuscator.cs │ │ │ ├── Value.cs │ │ │ └── ValueStack.cs │ │ └── de4dot.blocks.csproj │ │ ├── de4dot.code │ │ ├── AssemblyClient │ │ │ ├── AssemblyClient.cs │ │ │ ├── AssemblyClientFactory.cs │ │ │ ├── IAssemblyClient.cs │ │ │ ├── IAssemblyServerLoader.cs │ │ │ ├── IpcAssemblyServerLoader.cs │ │ │ ├── NewAppDomainAssemblyServerLoader.cs │ │ │ ├── NewProcessAssemblyServerLoader.cs │ │ │ └── SameAppDomainAssemblyServerLoader.cs │ │ ├── AssemblyModule.cs │ │ ├── AssemblyResolver.cs │ │ ├── DeobfuscatorContext.cs │ │ ├── DumpedMethodsRestorer.cs │ │ ├── HandleProcessCorruptedStateExceptionsAttribute.cs │ │ ├── IDeobfuscatorContext.cs │ │ ├── IObfuscatedFile.cs │ │ ├── Logger.cs │ │ ├── MethodPrinter.cs │ │ ├── MethodReturnValueInliner.cs │ │ ├── NameRegexes.cs │ │ ├── ObfuscatedFile.cs │ │ ├── Option.cs │ │ ├── PrintNewTokens.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SharpZipLib │ │ │ ├── Checksums │ │ │ │ ├── Adler32.cs │ │ │ │ └── IChecksum.cs │ │ │ ├── Main.cs │ │ │ ├── SharpZipBaseException.cs │ │ │ └── Zip │ │ │ │ └── Compression │ │ │ │ ├── Inflater.cs │ │ │ │ ├── InflaterDynHeader.cs │ │ │ │ ├── InflaterHuffmanTree.cs │ │ │ │ └── Streams │ │ │ │ ├── OutputWindow.cs │ │ │ │ └── StreamManipulator.cs │ │ ├── StringInliner.cs │ │ ├── UserException.cs │ │ ├── Utils.cs │ │ ├── Win32Path.cs │ │ ├── de4dot.code.csproj │ │ ├── deobfuscators │ │ │ ├── Agile_NET │ │ │ │ ├── CliSecureRtType.cs │ │ │ │ ├── CsBlowfish.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ ├── StackFrameHelper.cs │ │ │ │ ├── StringDecrypter.cs │ │ │ │ ├── StringDecrypterInfo.cs │ │ │ │ └── vm │ │ │ │ │ ├── CilOperandInstructionRestorer.cs │ │ │ │ │ ├── CsvmDataReader.cs │ │ │ │ │ ├── CsvmMethodData.cs │ │ │ │ │ ├── CsvmToCilMethodConverterBase.cs │ │ │ │ │ ├── VmOperand.cs │ │ │ │ │ ├── v1 │ │ │ │ │ ├── Csvm.cs │ │ │ │ │ ├── CsvmToCilMethodConverter.cs │ │ │ │ │ ├── FieldsInfo.cs │ │ │ │ │ ├── OpCodeHandler.cs │ │ │ │ │ ├── OpCodeHandlers.cs │ │ │ │ │ ├── UnknownHandlerInfo.cs │ │ │ │ │ └── VmOpCodeHandlerDetector.cs │ │ │ │ │ └── v2 │ │ │ │ │ ├── CSVM1.bin │ │ │ │ │ ├── CSVM2.bin │ │ │ │ │ ├── CSVM3.bin │ │ │ │ │ ├── CSVM4.bin │ │ │ │ │ ├── CSVM5.bin │ │ │ │ │ ├── CompositeHandlerDetector.cs │ │ │ │ │ ├── CompositeOpCodeHandler.cs │ │ │ │ │ ├── Csvm.cs │ │ │ │ │ ├── CsvmInfo.cs │ │ │ │ │ ├── CsvmResources.Designer.cs │ │ │ │ │ ├── CsvmResources.resx │ │ │ │ │ ├── CsvmToCilMethodConverter.cs │ │ │ │ │ ├── HandlerTypeCode.cs │ │ │ │ │ ├── OpCodeHandlerInfo.cs │ │ │ │ │ ├── OpCodeHandlerInfoReader.cs │ │ │ │ │ ├── OpCodeHandlerInfos.cs │ │ │ │ │ ├── SigCreator.cs │ │ │ │ │ ├── VmOpCode.cs │ │ │ │ │ └── VmOpCodeHandlerDetector.cs │ │ │ ├── ArrayFinder.cs │ │ │ ├── Babel_NET │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ ├── BabelInflater.cs │ │ │ │ ├── BabelMethodCallInliner.cs │ │ │ │ ├── BabelUtils.cs │ │ │ │ ├── ConstantsDecrypter.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── ImageReader.cs │ │ │ │ ├── InflaterCreator.cs │ │ │ │ ├── MemberReferenceConverter.cs │ │ │ │ ├── MethodBodyReader.cs │ │ │ │ ├── MethodReferenceReader.cs │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ ├── ResourceResolver.cs │ │ │ │ └── StringDecrypter.cs │ │ │ ├── Blowfish.cs │ │ │ ├── CRC32.cs │ │ │ ├── CodeFort │ │ │ │ ├── AssemblyData.cs │ │ │ │ ├── AssemblyDecrypter.cs │ │ │ │ ├── CfMethodCallInliner.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── PasswordFinder.cs │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ └── StringDecrypter.cs │ │ │ ├── CodeVeil │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── ErexResourceReader.cs │ │ │ │ ├── InvalidDataException.cs │ │ │ │ ├── InvalidMethodsFinder.cs │ │ │ │ ├── MainType.cs │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ ├── ObfuscatorVersion.cs │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ ├── ResourceConverter.cs │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ ├── ResourceInfo.cs │ │ │ │ ├── ResourceReader.cs │ │ │ │ ├── StringDecrypter.cs │ │ │ │ └── TamperDetection.cs │ │ │ ├── CodeWall │ │ │ │ ├── AssemblyDecrypter.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── KeyGenerator.cs │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ ├── StringDecrypter.cs │ │ │ │ └── randomc │ │ │ │ │ ├── CRandomMersenne.cs │ │ │ │ │ └── CRandomMother.cs │ │ │ ├── ConstantsReader.cs │ │ │ ├── CryptoObfuscator │ │ │ │ ├── AntiDebugger.cs │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ ├── CoMethodCallInliner.cs │ │ │ │ ├── CoUtils.cs │ │ │ │ ├── ConstantsDecrypter.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── InlinedMethodTypes.cs │ │ │ │ ├── LdnullFixer.cs │ │ │ │ ├── MethodBodyReader.cs │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ ├── ResourceResolver.cs │ │ │ │ ├── StringDecrypter.cs │ │ │ │ └── TamperDetection.cs │ │ │ ├── DeepSea │ │ │ │ ├── ArrayBlockDeobfuscator.cs │ │ │ │ ├── ArrayBlockState.cs │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ ├── CastDeobfuscator.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── DsConstantsReader.cs │ │ │ │ ├── DsInlinedMethodsFinder.cs │ │ │ │ ├── DsMethodCallInliner.cs │ │ │ │ ├── DsUtils.cs │ │ │ │ ├── FieldsRestorer.cs │ │ │ │ ├── ResolverBase.cs │ │ │ │ ├── ResourceResolver.cs │ │ │ │ └── StringDecrypter.cs │ │ │ ├── DeobUtils.cs │ │ │ ├── DeobfuscatorBase.cs │ │ │ ├── DeobfuscatorInfoBase.cs │ │ │ ├── Dotfuscator │ │ │ │ ├── Deobfuscator.cs │ │ │ │ └── StringDecrypter.cs │ │ │ ├── Eazfuscator_NET │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ ├── CodeCompilerMethodCallRestorer.cs │ │ │ │ ├── DecrypterType.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── DynamicDynocodeIterator.cs │ │ │ │ ├── DynocodeService.cs │ │ │ │ ├── EfConstantsReader.cs │ │ │ │ ├── EfUtils.cs │ │ │ │ ├── ResourceMethodsRestorer.cs │ │ │ │ ├── ResourceResolver.cs │ │ │ │ ├── StringDecrypter.cs │ │ │ │ └── VersionDetector.cs │ │ │ ├── ExceptionLoggerRemover.cs │ │ │ ├── Goliath_NET │ │ │ │ ├── ArrayDecrypter.cs │ │ │ │ ├── ArrayValueInliner.cs │ │ │ │ ├── DecrypterBase.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── IntegerDecrypter.cs │ │ │ │ ├── LocalsRestorer.cs │ │ │ │ ├── LogicalExpressionFixer.cs │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ ├── StringDecrypter.cs │ │ │ │ └── StrongNameChecker.cs │ │ │ ├── IDeobfuscatedFile.cs │ │ │ ├── IDeobfuscator.cs │ │ │ ├── IDeobfuscatorInfo.cs │ │ │ ├── ILProtector │ │ │ │ ├── DecryptedMethodInfo.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── DynamicMethodsDecrypter.cs │ │ │ │ ├── DynamicMethodsDecrypterService.cs │ │ │ │ ├── DynamicMethodsRestorer.cs │ │ │ │ ├── MainType.cs │ │ │ │ ├── MethodReader.cs │ │ │ │ ├── MethodsDecrypterBase.cs │ │ │ │ ├── RuntimeFileInfo.cs │ │ │ │ └── StaticMethodsDecrypter.cs │ │ │ ├── ISimpleDeobfuscator.cs │ │ │ ├── InitializedDataCreator.cs │ │ │ ├── InlinedMethodsFinder.cs │ │ │ ├── MPRESS │ │ │ │ ├── Deobfuscator.cs │ │ │ │ └── Lzmat.cs │ │ │ ├── MaxtoCode │ │ │ │ ├── CryptDecrypter.cs │ │ │ │ ├── Decrypter6.cs │ │ │ │ ├── DecrypterInfo.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── EncryptionInfos.cs │ │ │ │ ├── MainType.cs │ │ │ │ ├── McKey.cs │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ ├── PeHeader.cs │ │ │ │ └── StringDecrypter.cs │ │ │ ├── MemberReferenceBuilder.cs │ │ │ ├── MethodBodyParser.cs │ │ │ ├── MethodCallRestorerBase.cs │ │ │ ├── MethodCollection.cs │ │ │ ├── MethodStack.cs │ │ │ ├── MethodsDecrypter.cs │ │ │ ├── MyPEImage.cs │ │ │ ├── NullStream.cs │ │ │ ├── Operations.cs │ │ │ ├── ProxyCallFixerBase.cs │ │ │ ├── QuickLZ.cs │ │ │ ├── RandomNameChecker.cs │ │ │ ├── Rummage │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── RummageVersion.cs │ │ │ │ └── StringDecrypter.cs │ │ │ ├── Skater_NET │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── EnumClassFinder.cs │ │ │ │ └── StringDecrypter.cs │ │ │ ├── SmartAssembly │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ ├── AssemblyResolverInfo.cs │ │ │ │ ├── AutomatedErrorReportingFinder.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── MemoryManagerInfo.cs │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ ├── ResolverInfoBase.cs │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ ├── ResourceDecrypterInfo.cs │ │ │ │ ├── ResourceResolver.cs │ │ │ │ ├── ResourceResolverInfo.cs │ │ │ │ ├── SimpleZipInfo.cs │ │ │ │ ├── StringDecrypter.cs │ │ │ │ ├── StringDecrypterInfo.cs │ │ │ │ ├── StringEncoderClassFinder.cs │ │ │ │ └── TamperProtectionRemover.cs │ │ │ ├── Spices_Net │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── QclzDecompressor.cs │ │ │ │ ├── ResourceNamesRestorer.cs │ │ │ │ ├── SpicesMethodCallInliner.cs │ │ │ │ └── StringDecrypter.cs │ │ │ ├── StringCounts.cs │ │ │ ├── TypesRestorer.cs │ │ │ ├── Unknown │ │ │ │ └── Deobfuscator.cs │ │ │ ├── UnpackedFile.cs │ │ │ ├── UnusedMethodsFinder.cs │ │ │ ├── ValueInlinerBase.cs │ │ │ ├── Xenocode │ │ │ │ ├── Deobfuscator.cs │ │ │ │ └── StringDecrypter.cs │ │ │ └── dotNET_Reactor │ │ │ │ ├── v3 │ │ │ │ ├── AntiStrongName.cs │ │ │ │ ├── ApplicationModeDecrypter.cs │ │ │ │ ├── ApplicationModeUnpacker.cs │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ ├── DecryptMethod.cs │ │ │ │ ├── DecrypterType.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── LibAssemblyResolver.cs │ │ │ │ ├── MemoryPatcher.cs │ │ │ │ └── NativeLibSaver.cs │ │ │ │ └── v4 │ │ │ │ ├── AntiStrongname.cs │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ ├── BooleanDecrypter.cs │ │ │ │ ├── Deobfuscator.cs │ │ │ │ ├── DnrMethodCallInliner.cs │ │ │ │ ├── EmptyClass.cs │ │ │ │ ├── EncryptedResource.cs │ │ │ │ ├── MetadataTokenObfuscator.cs │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ ├── NativeFileDecrypter.cs │ │ │ │ ├── NativeImageUnpacker.cs │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ ├── ResourceResolver.cs │ │ │ │ └── StringDecrypter.cs │ │ ├── renamer │ │ │ ├── DerivedFrom.cs │ │ │ ├── ExistingNames.cs │ │ │ ├── INameChecker.cs │ │ │ ├── MemberInfos.cs │ │ │ ├── NameCreators.cs │ │ │ ├── Renamer.cs │ │ │ ├── ResourceKeysRenamer.cs │ │ │ ├── ResourceRenamer.cs │ │ │ ├── TypeInfo.cs │ │ │ ├── TypeNames.cs │ │ │ ├── TypeRenamerState.cs │ │ │ ├── VariableNameState.cs │ │ │ └── asmmodules │ │ │ │ ├── EventDef.cs │ │ │ │ ├── FieldDef.cs │ │ │ │ ├── GenericParamDef.cs │ │ │ │ ├── IResolver.cs │ │ │ │ ├── MemberRefFinder.cs │ │ │ │ ├── MethodDef.cs │ │ │ │ ├── MethodNameGroups.cs │ │ │ │ ├── Module.cs │ │ │ │ ├── Modules.cs │ │ │ │ ├── ParamDef.cs │ │ │ │ ├── PropertyDef.cs │ │ │ │ ├── Ref.cs │ │ │ │ ├── RefDict.cs │ │ │ │ └── TypeDef.cs │ │ └── resources │ │ │ ├── BuiltInResourceData.cs │ │ │ ├── IResourceData.cs │ │ │ ├── ResourceDataCreator.cs │ │ │ ├── ResourceElement.cs │ │ │ ├── ResourceElementSet.cs │ │ │ ├── ResourceReader.cs │ │ │ ├── ResourceTypeCode.cs │ │ │ ├── ResourceWriter.cs │ │ │ ├── UserResourceData.cs │ │ │ └── UserResourceType.cs │ │ ├── de4dot.cui │ │ ├── CommandLineParser.cs │ │ ├── FilesDeobfuscator.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── de4dot.cui.csproj │ │ ├── de4dot.mdecrypt │ │ ├── DecryptMethodsInfo.cs │ │ ├── DynamicMethodsDecrypter.cs │ │ ├── NativeCodeGenerator.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── de4dot.mdecrypt.csproj │ │ ├── de4dot.sln │ │ ├── de4dot │ │ ├── App.config │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── de4dot.csproj │ │ └── dnlib │ │ ├── .gitignore │ │ ├── Examples │ │ ├── Example1.cs │ │ ├── Example2.cs │ │ ├── Example3.cs │ │ ├── Examples.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── dnlib.sln │ │ ├── dnlib.snk │ │ └── src │ │ ├── DotNet │ │ ├── AccessChecker.cs │ │ ├── AllTypesHelper.cs │ │ ├── AssemblyAttributes.cs │ │ ├── AssemblyDef.cs │ │ ├── AssemblyHash.cs │ │ ├── AssemblyHashAlgorithm.cs │ │ ├── AssemblyNameComparer.cs │ │ ├── AssemblyNameInfo.cs │ │ ├── AssemblyRef.cs │ │ ├── AssemblyResolver.cs │ │ ├── CallingConvention.cs │ │ ├── CallingConventionSig.cs │ │ ├── ClassLayout.cs │ │ ├── Constant.cs │ │ ├── CorLibTypes.cs │ │ ├── CustomAttribute.cs │ │ ├── CustomAttributeCollection.cs │ │ ├── CustomAttributeReader.cs │ │ ├── DeclSecurity.cs │ │ ├── DeclSecurityAction.cs │ │ ├── ElementType.cs │ │ ├── Emit │ │ │ ├── Code.cs │ │ │ ├── DynamicMethodBodyReader.cs │ │ │ ├── ExceptionHandler.cs │ │ │ ├── ExceptionHandlerType.cs │ │ │ ├── Extensions.cs │ │ │ ├── FlowControl.cs │ │ │ ├── Instruction.cs │ │ │ ├── InstructionPrinter.cs │ │ │ ├── InvalidMethodException.cs │ │ │ ├── LocalList.cs │ │ │ ├── MethodBody.cs │ │ │ ├── MethodBodyReader.cs │ │ │ ├── MethodBodyReaderBase.cs │ │ │ ├── MethodTableToTypeConverter.cs │ │ │ ├── MethodUtils.cs │ │ │ ├── OpCode.cs │ │ │ ├── OpCodeType.cs │ │ │ ├── OpCodes.cs │ │ │ ├── OperandType.cs │ │ │ └── StackBehaviour.cs │ │ ├── EventAttributes.cs │ │ ├── EventDef.cs │ │ ├── ExportedType.cs │ │ ├── Extensions.cs │ │ ├── FieldAttributes.cs │ │ ├── FieldDef.cs │ │ ├── FieldMarshal.cs │ │ ├── FileAttributes.cs │ │ ├── FileDef.cs │ │ ├── FullNameCreator.cs │ │ ├── GenericArguments.cs │ │ ├── GenericParam.cs │ │ ├── GenericParamAttributes.cs │ │ ├── GenericParamConstraint.cs │ │ ├── IAssemblyResolver.cs │ │ ├── ICodedToken.cs │ │ ├── ICorLibTypes.cs │ │ ├── IDecrypters.cs │ │ ├── ILogger.cs │ │ ├── IResolver.cs │ │ ├── IType.cs │ │ ├── ITypeDefFinder.cs │ │ ├── IVariable.cs │ │ ├── ImplMap.cs │ │ ├── Importer.cs │ │ ├── InterfaceImpl.cs │ │ ├── MD │ │ │ ├── BlobStream.cs │ │ │ ├── CodedToken.cs │ │ │ ├── ColumnInfo.cs │ │ │ ├── ColumnSize.cs │ │ │ ├── ComImageFlags.cs │ │ │ ├── CompressedMetaData.cs │ │ │ ├── DotNetFile.cs │ │ │ ├── DotNetStream.cs │ │ │ ├── DotNetTableSizes.cs │ │ │ ├── ENCMetaData.cs │ │ │ ├── GuidStream.cs │ │ │ ├── HeapType.cs │ │ │ ├── HotHeapStream.cs │ │ │ ├── HotHeapVersion.cs │ │ │ ├── HotStream.cs │ │ │ ├── HotTableStream.cs │ │ │ ├── IMetaData.cs │ │ │ ├── IRowReaders.cs │ │ │ ├── ImageCor20Header.cs │ │ │ ├── MDHeaderRuntimeVersion.cs │ │ │ ├── MDStreamFlags.cs │ │ │ ├── MDTable.cs │ │ │ ├── MetaData.cs │ │ │ ├── MetaDataHeader.cs │ │ │ ├── RawRowEqualityComparer.cs │ │ │ ├── RawTableRows.cs │ │ │ ├── RidList.cs │ │ │ ├── StorageFlags.cs │ │ │ ├── StreamHeader.cs │ │ │ ├── StringsStream.cs │ │ │ ├── Table.cs │ │ │ ├── TableInfo.cs │ │ │ ├── TablesStream.cs │ │ │ ├── TablesStream_Read.cs │ │ │ └── USStream.cs │ │ ├── MDToken.cs │ │ ├── ManifestResource.cs │ │ ├── ManifestResourceAttributes.cs │ │ ├── MemberMDInitializer.cs │ │ ├── MemberRef.cs │ │ ├── MethodAttributes.cs │ │ ├── MethodDef.cs │ │ ├── MethodImplAttributes.cs │ │ ├── MethodOverride.cs │ │ ├── MethodSemanticsAttributes.cs │ │ ├── MethodSpec.cs │ │ ├── ModuleContext.cs │ │ ├── ModuleDef.cs │ │ ├── ModuleDefMD.cs │ │ ├── ModuleKind.cs │ │ ├── ModuleRef.cs │ │ ├── NullResolver.cs │ │ ├── PInvokeAttributes.cs │ │ ├── ParamAttributes.cs │ │ ├── ParamDef.cs │ │ ├── ParameterList.cs │ │ ├── PropertyAttributes.cs │ │ ├── PropertyDef.cs │ │ ├── PublicKey.cs │ │ ├── PublicKeyBase.cs │ │ ├── PublicKeyToken.cs │ │ ├── RecursionCounter.cs │ │ ├── ReflectionExtensions.cs │ │ ├── ResolveException.cs │ │ ├── Resolver.cs │ │ ├── Resource.cs │ │ ├── ResourceCollection.cs │ │ ├── SerializationType.cs │ │ ├── SigComparer.cs │ │ ├── SignatureReader.cs │ │ ├── StandAloneSig.cs │ │ ├── StrongNameKey.cs │ │ ├── StrongNameSigner.cs │ │ ├── TypeAttributes.cs │ │ ├── TypeDef.cs │ │ ├── TypeDefFinder.cs │ │ ├── TypeNameParser.cs │ │ ├── TypeRef.cs │ │ ├── TypeSig.cs │ │ ├── TypeSpec.cs │ │ ├── UTF8String.cs │ │ ├── Utils.cs │ │ ├── VTableFixups.cs │ │ └── Writer │ │ │ ├── BinaryReaderChunk.cs │ │ │ ├── BlobHeap.cs │ │ │ ├── ByteArrayChunk.cs │ │ │ ├── ChunkList.cs │ │ │ ├── ChunkListBase.cs │ │ │ ├── CustomAttributeWriter.cs │ │ │ ├── DebugDirectory.cs │ │ │ ├── Extensions.cs │ │ │ ├── GuidHeap.cs │ │ │ ├── HeapBase.cs │ │ │ ├── HotHeap.cs │ │ │ ├── HotPool.cs │ │ │ ├── HotTable.cs │ │ │ ├── IChunk.cs │ │ │ ├── IHeap.cs │ │ │ ├── IMetaDataListener.cs │ │ │ ├── IModuleWriterListener.cs │ │ │ ├── IOffsetHeap.cs │ │ │ ├── ImageCor20Header.cs │ │ │ ├── ImportAddressTable.cs │ │ │ ├── ImportDirectory.cs │ │ │ ├── MDTable.cs │ │ │ ├── MDTableWriter.cs │ │ │ ├── MaxStackCalculator.cs │ │ │ ├── MetaData.cs │ │ │ ├── MetaDataHeader.cs │ │ │ ├── MethodBody.cs │ │ │ ├── MethodBodyChunks.cs │ │ │ ├── MethodBodyWriter.cs │ │ │ ├── MethodBodyWriterBase.cs │ │ │ ├── ModuleWriter.cs │ │ │ ├── ModuleWriterBase.cs │ │ │ ├── ModuleWriterException.cs │ │ │ ├── NativeModuleWriter.cs │ │ │ ├── NetResources.cs │ │ │ ├── NormalMetaData.cs │ │ │ ├── PEHeaders.cs │ │ │ ├── PESection.cs │ │ │ ├── PreserveTokensMetaData.cs │ │ │ ├── RelocDirectory.cs │ │ │ ├── SectionSizes.cs │ │ │ ├── SignatureWriter.cs │ │ │ ├── StartupStub.cs │ │ │ ├── StringsHeap.cs │ │ │ ├── StrongNameSignature.cs │ │ │ ├── TablesHeap.cs │ │ │ ├── USHeap.cs │ │ │ ├── UniqueChunkList.cs │ │ │ └── Win32ResourcesChunk.cs │ │ ├── ExtensionAttribute.cs │ │ ├── HandleProcessCorruptedStateExceptionsAttribute.cs │ │ ├── IO │ │ ├── BinaryReaderStream.cs │ │ ├── FileOffset.cs │ │ ├── FileSection.cs │ │ ├── IBinaryReader.cs │ │ ├── IFileSection.cs │ │ ├── IImageStream.cs │ │ ├── IImageStreamCreator.cs │ │ ├── IOExtensions.cs │ │ ├── MemoryImageStream.cs │ │ ├── MemoryMappedFileStreamCreator.cs │ │ ├── MemoryStreamCreator.cs │ │ ├── UnmanagedMemoryImageStream.cs │ │ └── UnmanagedMemoryStreamCreator.cs │ │ ├── PE │ │ ├── Characteristics.cs │ │ ├── DllCharacteristics.cs │ │ ├── IImageOptionalHeader.cs │ │ ├── IPEImage.cs │ │ ├── IPEType.cs │ │ ├── ImageDataDirectory.cs │ │ ├── ImageDosHeader.cs │ │ ├── ImageFileHeader.cs │ │ ├── ImageNTHeaders.cs │ │ ├── ImageOptionalHeader32.cs │ │ ├── ImageOptionalHeader64.cs │ │ ├── ImageSectionHeader.cs │ │ ├── Machine.cs │ │ ├── PEExtensions.cs │ │ ├── PEImage.cs │ │ ├── PEInfo.cs │ │ ├── RVA.cs │ │ └── Subsystem.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Threading │ │ ├── Extensions.cs │ │ ├── IThreadSafeList.cs │ │ ├── Lock.cs │ │ ├── ThreadSafeListCreator.cs │ │ └── ThreadSafeListWrapper.cs │ │ ├── Utils │ │ ├── Extensions.cs │ │ ├── ILazyList.cs │ │ ├── LazyList.cs │ │ ├── MFunc.cs │ │ ├── SimpleLazyList.cs │ │ └── UserValue.cs │ │ ├── W32Resources │ │ ├── ResourceData.cs │ │ ├── ResourceDirectory.cs │ │ ├── ResourceDirectoryEntry.cs │ │ ├── ResourceName.cs │ │ └── Win32Resources.cs │ │ └── dnlib.csproj ├── De4dotModule.cs ├── De4dotWrapper.cs ├── DeobfuscateDialog │ ├── DeobfuscateDialog.xaml │ ├── DeobfuscateDialog.xaml.cs │ ├── DeobfuscateDialogViewModel.cs │ └── SelectedOptions.cs ├── DeobfuscationProgressView.xaml ├── DeobfuscationProgressView.xaml.cs ├── LicenseAgreements │ ├── COPYING │ ├── LICENSE.de4dot.txt │ └── ThirdParty │ │ ├── LICENSE.ICSharpCode.SharpZipLib.txt │ │ ├── LICENSE.QuickLZ.txt │ │ ├── LICENSE.dnlib.txt │ │ └── LICENSE.randomc.txt ├── PluginConfig.xml └── Properties │ └── AssemblyInfo.cs ├── FAQ.pdf ├── JustDecompile.De4dotPlugin.sln ├── JustDecompile.ReflexilPlugin.sln ├── JustDecompile.ReflexilPlugin.vssscc ├── JustDecompileApi.sln ├── JustDecompilePowerTools.sln ├── JustDecompilePowerTools ├── JustDecompilePowerTools.cs ├── JustDecompilePowerTools.csproj ├── JustDecompilePowerTools.csproj.vspscc ├── LICENSE.txt ├── MenuItem.cs ├── PluginConfig.xml ├── ProgressWindow.cs └── Properties │ └── AssemblyInfo.cs ├── README.md ├── Reflexil.JustDecompile ├── Images │ └── gray_close_button.png ├── JustDecompileCecilPlugin.cs ├── JustDecompileCecilStudioPackage.cs ├── MenuItems │ ├── AssemblyNodeContextMenu.cs │ ├── AssemblyReferenceNode.cs │ ├── EmbeddedResourceContextMenu.cs │ ├── MemberDefinitionContextMenu.cs │ ├── MenuItem.cs │ ├── MenuItemBase.cs │ ├── MenuSeparator.cs │ ├── ModuleDefinitionContextMenu.cs │ ├── ReflexilToolsMenuItem.cs │ └── TypeDefinitionContextMenu.cs ├── PluginConfig.xml ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Reflexil.JustDecompile.Module.csproj ├── Reflexil.JustDecompile.Module.csproj.vspscc ├── Reflexil.JustDecompile.csproj.user ├── ReflexilHost.xaml ├── ReflexilHost.xaml.cs ├── ReflexilModule.cs ├── reflexil.1.5.src │ ├── ChangeLog │ ├── Compilation │ │ ├── AppDomainHelper.cs │ │ ├── BaseLanguageHelper.cs │ │ ├── CSharpHelper.cs │ │ ├── Compiler.cs │ │ ├── ECSharpKeyword.cs │ │ ├── ESpaceSurrounder.cs │ │ ├── ESupportedLanguage.cs │ │ ├── EVisualBasicKeywords.cs │ │ ├── ILanguageHelper.cs │ │ ├── LanguageHelperFactory.cs │ │ └── VisualBasicHelper.cs │ ├── Controls │ │ ├── Body │ │ │ ├── GenericOperandReferenceEditor.cs │ │ │ ├── InstructionReferenceEditor.cs │ │ │ ├── MultipleInstructionReferenceEditor.cs │ │ │ ├── ParameterReferenceEditor.cs │ │ │ └── VariableReferenceEditor.cs │ │ ├── Context │ │ │ └── GenericTypeReferenceEditor.cs │ │ ├── Definition │ │ │ ├── AssemblyDefinitionControl.Designer.cs │ │ │ ├── AssemblyDefinitionControl.cs │ │ │ ├── AssemblyDefinitionControl.resx │ │ │ ├── AssemblyDefinitionEditor.Designer.cs │ │ │ ├── AssemblyDefinitionEditor.cs │ │ │ ├── AssemblyDefinitionEditor.resx │ │ │ ├── ConstantEditor.Designer.cs │ │ │ ├── ConstantEditor.cs │ │ │ ├── ConstantEditor.resx │ │ │ ├── CustomAttributeArgumentEditor.Designer.cs │ │ │ ├── CustomAttributeArgumentEditor.cs │ │ │ ├── CustomAttributeArgumentEditor.resx │ │ │ ├── HexEditorControl.Designer.cs │ │ │ ├── HexEditorControl.cs │ │ │ ├── HexEditorControl.resx │ │ │ ├── MethodDefinitionEditor.cs │ │ │ ├── ModuleDefinitionControl.Designer.cs │ │ │ ├── ModuleDefinitionControl.cs │ │ │ ├── ModuleDefinitionControl.resx │ │ │ └── TypeDefinitionEditor.cs │ │ ├── Grid │ │ │ ├── CustomAttributeArgumentGridControl.Designer.cs │ │ │ ├── CustomAttributeArgumentGridControl.cs │ │ │ ├── CustomAttributeGridControl.Designer.cs │ │ │ ├── CustomAttributeGridControl.cs │ │ │ ├── CustomAttributeNamedArgumentGridControl.Designer.cs │ │ │ ├── CustomAttributeNamedArgumentGridControl.cs │ │ │ ├── ExceptionHandlerGridControl.Designer.cs │ │ │ ├── ExceptionHandlerGridControl.cs │ │ │ ├── GridControl.Designer.cs │ │ │ ├── GridControl.cs │ │ │ ├── GridControl.resx │ │ │ ├── InstructionGridControl.Designer.cs │ │ │ ├── InstructionGridControl.cs │ │ │ ├── InterfaceGridControl.Designer.cs │ │ │ ├── InterfaceGridControl.cs │ │ │ ├── OverrideGridControl.Designer.cs │ │ │ ├── OverrideGridControl.cs │ │ │ ├── ParameterGridControl.Designer.cs │ │ │ ├── ParameterGridControl.cs │ │ │ ├── VariableGridControl.Designer.cs │ │ │ └── VariableGridControl.cs │ │ ├── IOperandEditor.cs │ │ ├── Misc │ │ │ ├── BasePopupControl.cs │ │ │ ├── TextComboUserControl.Designer.cs │ │ │ ├── TextComboUserControl.cs │ │ │ └── TextComboUserControl.resx │ │ ├── NoneOperandEditor.cs │ │ ├── NotSupportedOperandEditor.cs │ │ ├── NullOperandEditor.cs │ │ ├── Primitive │ │ │ ├── BooleanEditor.cs │ │ │ ├── ByteEditor.cs │ │ │ ├── DoubleEditor.cs │ │ │ ├── GenericOperandEditor.cs │ │ │ ├── IntegerEditor.cs │ │ │ ├── LongEditor.cs │ │ │ ├── SByteEditor.cs │ │ │ ├── SingleEditor.cs │ │ │ └── StringEditor.cs │ │ ├── Reference │ │ │ ├── ETypeSpecification.cs │ │ │ ├── FieldReferenceEditor.cs │ │ │ ├── GenericMemberReferenceEditor.cs │ │ │ ├── MethodReferenceEditor.cs │ │ │ ├── TypeReferenceEditor.cs │ │ │ ├── TypeSpecificationEditor.Designer.cs │ │ │ ├── TypeSpecificationEditor.cs │ │ │ └── TypeSpecificationEditor.resx │ │ └── Split │ │ │ ├── AssemblyNameDefinitionAttributesControl.Designer.cs │ │ │ ├── AssemblyNameDefinitionAttributesControl.cs │ │ │ ├── AssemblyNameDefinitionAttributesControl.resx │ │ │ ├── AssemblyNameReferenceAttributesControl.Designer.cs │ │ │ ├── AssemblyNameReferenceAttributesControl.cs │ │ │ ├── AssemblyNameReferenceAttributesControl.resx │ │ │ ├── AttributesControl.Designer.cs │ │ │ ├── AttributesControl.cs │ │ │ ├── AttributesControl.resx │ │ │ ├── EmbeddedResourceAttributesControl.Designer.cs │ │ │ ├── EmbeddedResourceAttributesControl.cs │ │ │ ├── EmbeddedResourceAttributesControl.resx │ │ │ ├── EventAttributesControl.Designer.cs │ │ │ ├── EventAttributesControl.cs │ │ │ ├── EventAttributesControl.resx │ │ │ ├── FieldAttributesControl.Designer.cs │ │ │ ├── FieldAttributesControl.cs │ │ │ ├── FieldAttributesControl.resx │ │ │ ├── LinkedResourceAttributesControl.Designer.cs │ │ │ ├── LinkedResourceAttributesControl.cs │ │ │ ├── LinkedResourceAttributesControl.resx │ │ │ ├── MethodAttributesControl.Designer.cs │ │ │ ├── MethodAttributesControl.cs │ │ │ ├── MethodAttributesControl.resx │ │ │ ├── PropertyAttributesControl.Designer.cs │ │ │ ├── PropertyAttributesControl.cs │ │ │ ├── PropertyAttributesControl.resx │ │ │ ├── ResourceAttributesControl.Designer.cs │ │ │ ├── ResourceAttributesControl.cs │ │ │ ├── ResourceAttributesControl.resx │ │ │ ├── SplitAttributesControl.Designer.cs │ │ │ ├── SplitAttributesControl.cs │ │ │ ├── SplitAttributesControl.resx │ │ │ ├── TypeAttributesControl.Designer.cs │ │ │ ├── TypeAttributesControl.cs │ │ │ └── TypeAttributesControl.resx │ ├── Forms │ │ ├── CodeForm.Designer.cs │ │ ├── CodeForm.cs │ │ ├── CodeForm.resx │ │ ├── ConfigureForm.Designer.cs │ │ ├── ConfigureForm.cs │ │ ├── ConfigureForm.resx │ │ ├── CreateCustomAttributeArgumentForm.Designer.cs │ │ ├── CreateCustomAttributeArgumentForm.cs │ │ ├── CreateCustomAttributeArgumentForm.resx │ │ ├── CreateCustomAttributeForm.Designer.cs │ │ ├── CreateCustomAttributeForm.cs │ │ ├── CreateCustomAttributeForm.resx │ │ ├── CreateCustomAttributeNamedArgumentForm.Designer.cs │ │ ├── CreateCustomAttributeNamedArgumentForm.cs │ │ ├── CreateCustomAttributeNamedArgumentForm.resx │ │ ├── CreateExceptionHandlerForm.Designer.cs │ │ ├── CreateExceptionHandlerForm.cs │ │ ├── CreateExceptionHandlerForm.resx │ │ ├── CreateInstructionForm.Designer.cs │ │ ├── CreateInstructionForm.cs │ │ ├── CreateInstructionForm.resx │ │ ├── CreateInterfaceForm.Designer.cs │ │ ├── CreateInterfaceForm.cs │ │ ├── CreateInterfaceForm.resx │ │ ├── CreateOverrideForm.Designer.cs │ │ ├── CreateOverrideForm.cs │ │ ├── CreateOverrideForm.resx │ │ ├── CreateParameterForm.Designer.cs │ │ ├── CreateParameterForm.cs │ │ ├── CreateParameterForm.resx │ │ ├── CreateVariableForm.Designer.cs │ │ ├── CreateVariableForm.cs │ │ ├── CreateVariableForm.resx │ │ ├── CustomAttributeArgumentForm.Designer.cs │ │ ├── CustomAttributeArgumentForm.cs │ │ ├── CustomAttributeArgumentForm.resx │ │ ├── CustomAttributeForm.Designer.cs │ │ ├── CustomAttributeForm.cs │ │ ├── CustomAttributeForm.resx │ │ ├── CustomAttributeNamedArgumentForm.Designer.cs │ │ ├── CustomAttributeNamedArgumentForm.cs │ │ ├── CustomAttributeNamedArgumentForm.resx │ │ ├── DirectoryScanForm.Designer.cs │ │ ├── DirectoryScanForm.cs │ │ ├── DirectoryScanForm.resx │ │ ├── EditCustomAttributeArgumentForm.Designer.cs │ │ ├── EditCustomAttributeArgumentForm.cs │ │ ├── EditCustomAttributeArgumentForm.resx │ │ ├── EditCustomAttributeForm.Designer.cs │ │ ├── EditCustomAttributeForm.cs │ │ ├── EditCustomAttributeForm.resx │ │ ├── EditCustomAttributeNamedArgumentForm.Designer.cs │ │ ├── EditCustomAttributeNamedArgumentForm.cs │ │ ├── EditCustomAttributeNamedArgumentForm.resx │ │ ├── EditExceptionHandlerForm.Designer.cs │ │ ├── EditExceptionHandlerForm.cs │ │ ├── EditExceptionHandlerForm.resx │ │ ├── EditInstructionForm.Designer.cs │ │ ├── EditInstructionForm.cs │ │ ├── EditInstructionForm.resx │ │ ├── EditInterfaceForm.Designer.cs │ │ ├── EditInterfaceForm.cs │ │ ├── EditInterfaceForm.resx │ │ ├── EditOverrideForm.Designer.cs │ │ ├── EditOverrideForm.cs │ │ ├── EditOverrideForm.resx │ │ ├── EditParameterForm.Designer.cs │ │ ├── EditParameterForm.cs │ │ ├── EditParameterForm.resx │ │ ├── EditVariableForm.Designer.cs │ │ ├── EditVariableForm.cs │ │ ├── EditVariableForm.resx │ │ ├── ExceptionHandlerForm.Designer.cs │ │ ├── ExceptionHandlerForm.cs │ │ ├── ExceptionHandlerForm.resx │ │ ├── GenericMemberReferenceForm.Designer.cs │ │ ├── GenericMemberReferenceForm.cs │ │ ├── GenericMemberReferenceForm.resx │ │ ├── HexFindCancelForm.cs │ │ ├── HexFindCancelForm.resx │ │ ├── HexFindForm.cs │ │ ├── HexFindForm.resx │ │ ├── HexGotoForm.cs │ │ ├── HexGotoForm.resx │ │ ├── InjectForm.Designer.cs │ │ ├── InjectForm.cs │ │ ├── InjectForm.resx │ │ ├── InstructionForm.Designer.cs │ │ ├── InstructionForm.cs │ │ ├── InstructionForm.resx │ │ ├── InstructionSelectForm.Designer.cs │ │ ├── InstructionSelectForm.cs │ │ ├── InstructionSelectForm.resx │ │ ├── IntellisenseForm.Designer.cs │ │ ├── IntellisenseForm.cs │ │ ├── IntellisenseForm.resx │ │ ├── InterfaceForm.Designer.cs │ │ ├── InterfaceForm.cs │ │ ├── InterfaceForm.resx │ │ ├── OverrideForm.Designer.cs │ │ ├── OverrideForm.cs │ │ ├── OverrideForm.resx │ │ ├── ParameterForm.Designer.cs │ │ ├── ParameterForm.cs │ │ ├── ParameterForm.resx │ │ ├── PropertyGridForm.Designer.cs │ │ ├── PropertyGridForm.cs │ │ ├── PropertyGridForm.resx │ │ ├── ReferenceUpdaterForm.Designer.cs │ │ ├── ReferenceUpdaterForm.cs │ │ ├── ReferenceUpdaterForm.resx │ │ ├── ReflexilWindow.Designer.cs │ │ ├── ReflexilWindow.cs │ │ ├── ReflexilWindow.resx │ │ ├── RenameForm.Designer.cs │ │ ├── RenameForm.cs │ │ ├── RenameForm.resx │ │ ├── StrongNameForm.Designer.cs │ │ ├── StrongNameForm.cs │ │ ├── StrongNameForm.resx │ │ ├── StrongNameRemoverForm.Designer.cs │ │ ├── StrongNameRemoverForm.cs │ │ ├── StrongNameRemoverForm.resx │ │ ├── SyncWarningForm.Designer.cs │ │ ├── SyncWarningForm.cs │ │ ├── SyncWarningForm.resx │ │ ├── TypeSpecificationForm.Designer.cs │ │ ├── TypeSpecificationForm.cs │ │ ├── TypeSpecificationForm.resx │ │ ├── VariableForm.Designer.cs │ │ ├── VariableForm.cs │ │ ├── VariableForm.resx │ │ ├── VerifierForm.Designer.cs │ │ ├── VerifierForm.cs │ │ └── VerifierForm.resx │ ├── Handlers │ │ ├── AssemblyDefinitionHandler.Designer.cs │ │ ├── AssemblyDefinitionHandler.cs │ │ ├── AssemblyDefinitionHandler.resx │ │ ├── AssemblyLinkedResourceHandler.Designer.cs │ │ ├── AssemblyLinkedResourceHandler.cs │ │ ├── AssemblyLinkedResourceHandler.resx │ │ ├── AssemblyNameReferenceHandler.Designer.cs │ │ ├── AssemblyNameReferenceHandler.cs │ │ ├── AssemblyNameReferenceHandler.resx │ │ ├── EmbeddedResourceHandler.Designer.cs │ │ ├── EmbeddedResourceHandler.cs │ │ ├── EmbeddedResourceHandler.resx │ │ ├── EventDefinitionHandler.Designer.cs │ │ ├── EventDefinitionHandler.cs │ │ ├── EventDefinitionHandler.resx │ │ ├── FieldDefinitionHandler.Designer.cs │ │ ├── FieldDefinitionHandler.cs │ │ ├── FieldDefinitionHandler.resx │ │ ├── IHandler.cs │ │ ├── LinkedResourceHandler.Designer.cs │ │ ├── LinkedResourceHandler.cs │ │ ├── LinkedResourceHandler.resx │ │ ├── MethodDefinitionHandler.Designer.cs │ │ ├── MethodDefinitionHandler.cs │ │ ├── MethodDefinitionHandler.resx │ │ ├── ModuleDefinitionHandler.Designer.cs │ │ ├── ModuleDefinitionHandler.cs │ │ ├── ModuleDefinitionHandler.resx │ │ ├── NotSupportedHandler.Designer.cs │ │ ├── NotSupportedHandler.cs │ │ ├── NotSupportedHandler.resx │ │ ├── PropertyDefinitionHandler.Designer.cs │ │ ├── PropertyDefinitionHandler.cs │ │ ├── PropertyDefinitionHandler.resx │ │ ├── TypeDefinitionHandler.Designer.cs │ │ ├── TypeDefinitionHandler.cs │ │ └── TypeDefinitionHandler.resx │ ├── Intellisense │ │ ├── CodeCompletionData.cs │ │ ├── CodeCompletionKeyHandler.cs │ │ ├── CodeCompletionProvider.cs │ │ ├── HostCallbackImplementation.cs │ │ ├── MethodInsightDataProvider.cs │ │ ├── RegionFoldingStrategy.cs │ │ └── ToolTipProvider.cs │ ├── Keys │ │ ├── ICSharpCode.NRefactory.snk │ │ ├── ICSharpCode.SharpDevelop.snk │ │ ├── ICSharpCode.TextEditor.snk │ │ ├── mono.snk │ │ └── reflexil.snk │ ├── Libs │ │ ├── Binaries │ │ │ └── Be.Windows.Forms.HexBox.dll │ │ └── Sources │ │ │ ├── ICSharpCode.NRefactory │ │ │ ├── Ast │ │ │ │ ├── AbstractNode.cs │ │ │ │ ├── Enums.cs │ │ │ │ ├── General │ │ │ │ │ ├── BlockStatement.cs │ │ │ │ │ ├── CompilationUnit.cs │ │ │ │ │ ├── Expression.cs │ │ │ │ │ ├── LocalVariableDeclaration.cs │ │ │ │ │ ├── PrimitiveExpression.cs │ │ │ │ │ └── Statement.cs │ │ │ │ ├── Generated.cs │ │ │ │ ├── INode.cs │ │ │ │ ├── INullable.cs │ │ │ │ └── TypeReference.cs │ │ │ ├── AstBuilder │ │ │ │ ├── ExpressionBuilder.cs │ │ │ │ └── StatementBuilder.cs │ │ │ ├── EnvironmentInformationProvider.cs │ │ │ ├── Extensions │ │ │ │ ├── StringExtensions.cs │ │ │ │ └── XmlConvertExtensions.cs │ │ │ ├── IAstVisitor.cs │ │ │ ├── ICSharpCode.NRefactory.csproj │ │ │ ├── ICSharpCode.NRefactory.csproj.vspscc │ │ │ ├── Lexer │ │ │ │ ├── AbstractLexer.cs │ │ │ │ ├── CSharp │ │ │ │ │ ├── ConditionalCompilation.cs │ │ │ │ │ ├── KeywordList.txt │ │ │ │ │ ├── Keywords.cs │ │ │ │ │ ├── Lexer.cs │ │ │ │ │ └── Tokens.cs │ │ │ │ ├── ILexer.cs │ │ │ │ ├── LATextReader.cs │ │ │ │ ├── LexerMemento.cs │ │ │ │ ├── LookupTable.cs │ │ │ │ ├── SavepointEventArgs.cs │ │ │ │ ├── Special │ │ │ │ │ ├── BlankLine.cs │ │ │ │ │ ├── Comment.cs │ │ │ │ │ ├── CommentType.cs │ │ │ │ │ ├── ISpecial.cs │ │ │ │ │ ├── PreProcessingDirective.cs │ │ │ │ │ ├── SpecialTracker.cs │ │ │ │ │ └── TagComment.cs │ │ │ │ ├── Token.cs │ │ │ │ └── VBNet │ │ │ │ │ ├── Block.cs │ │ │ │ │ ├── ExpressionFinder.atg │ │ │ │ │ ├── ExpressionFinder.cs │ │ │ │ │ ├── ExpressionFinderState.cs │ │ │ │ │ ├── Extensions.cs │ │ │ │ │ ├── KeywordList.txt │ │ │ │ │ ├── Keywords.cs │ │ │ │ │ ├── Lexer.cs │ │ │ │ │ ├── Parser.cs │ │ │ │ │ ├── PushParser.frame │ │ │ │ │ ├── Tokens.cs │ │ │ │ │ ├── VBLexerMemento.cs │ │ │ │ │ └── XmlModeInfo.cs │ │ │ ├── Location.cs │ │ │ ├── OperatorPrecedence.cs │ │ │ ├── Parser │ │ │ │ ├── AbstractParser.cs │ │ │ │ ├── CSharp │ │ │ │ │ ├── CSharpParser.cs │ │ │ │ │ ├── Parser.cs │ │ │ │ │ └── cs.ATG │ │ │ │ ├── Errors.cs │ │ │ │ ├── Frames │ │ │ │ │ ├── Parser.frame │ │ │ │ │ ├── Scanner.frame │ │ │ │ │ └── SharpCoco.exe │ │ │ │ ├── IParser.cs │ │ │ │ ├── ModifierList.cs │ │ │ │ ├── VBNet │ │ │ │ │ ├── ParamModifierList.cs │ │ │ │ │ ├── Parser.cs │ │ │ │ │ ├── VBNET.ATG │ │ │ │ │ └── VBNetParser.cs │ │ │ │ ├── gen.bat │ │ │ │ └── gen.sh │ │ │ ├── ParserFactory.cs │ │ │ ├── PrettyPrinter │ │ │ │ ├── AbstractOutputFormatter.cs │ │ │ │ ├── AbstractPrettyPrintOptions.cs │ │ │ │ ├── CSharp │ │ │ │ │ ├── CSharpOutputVisitor.cs │ │ │ │ │ ├── OutputFormatter.cs │ │ │ │ │ └── PrettyPrintOptions.cs │ │ │ │ ├── IOutputAstVisitor.cs │ │ │ │ ├── SpecialNodesInserter.cs │ │ │ │ └── VBNet │ │ │ │ │ ├── VBNetOutputFormatter.cs │ │ │ │ │ ├── VBNetOutputVisitor.cs │ │ │ │ │ └── VBNetPrettyPrintOptions.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SnippetParser.cs │ │ │ └── Visitors │ │ │ │ ├── AbstractASTVisitor.cs │ │ │ │ ├── AbstractAstTransformer.cs │ │ │ │ ├── CSharpConstructsConvertVisitor.cs │ │ │ │ ├── CodeDOMOutputVisitor.cs │ │ │ │ ├── CodeDOMVerboseOutputGenerator.cs │ │ │ │ ├── ConvertVisitorBase.cs │ │ │ │ ├── LookupTableVisitor.cs │ │ │ │ ├── NodeTrackingAstVisitor.cs │ │ │ │ ├── NotImplementedAstVisitor.cs │ │ │ │ ├── PrefixFieldsVisitor.cs │ │ │ │ ├── RenameIdentifierVisitor.cs │ │ │ │ ├── SetParentVisitor.cs │ │ │ │ ├── SetRegionInclusionVisitor.cs │ │ │ │ ├── ToCSharpConvertVisitor.cs │ │ │ │ ├── ToVBNetConvertVisitor.cs │ │ │ │ ├── ToVBNetRenameConflictingVariables.cs │ │ │ │ └── VBNetConstructsConvertVisitor.cs │ │ │ ├── ICSharpCode.SharpDevelop.Dom │ │ │ ├── Ambience.cs │ │ │ ├── BusyManager.cs │ │ │ ├── CSharp │ │ │ │ ├── CSharpAmbience.cs │ │ │ │ ├── CSharpExpressionContext.cs │ │ │ │ ├── ExpressionFinder.cs │ │ │ │ ├── OverloadResolution.cs │ │ │ │ └── TypeInference.cs │ │ │ ├── CecilReader.cs │ │ │ ├── ClassFinder.cs │ │ │ ├── CtrlSpaceResolveHelper.cs │ │ │ ├── DiffUtility.cs │ │ │ ├── DomCache.cs │ │ │ ├── EasyCodeDom.cs │ │ │ ├── ExpressionContext.cs │ │ │ ├── ExtensionMethods.cs │ │ │ ├── FilePosition.cs │ │ │ ├── FileUtility.Minimal.cs │ │ │ ├── FoldingRegion.cs │ │ │ ├── FusionNative.cs │ │ │ ├── GacInterop.cs │ │ │ ├── HostCallback.cs │ │ │ ├── ICSharpCode.SharpDevelop.Dom.csproj │ │ │ ├── ICSharpCode.SharpDevelop.Dom.csproj.vspscc │ │ │ ├── IComment.cs │ │ │ ├── IExpressionFinder.cs │ │ │ ├── IResolver.cs │ │ │ ├── Implementations │ │ │ │ ├── AbstractEntity.cs │ │ │ │ ├── AbstractMember.cs │ │ │ │ ├── AbstractReturnType.cs │ │ │ │ ├── AnonymousMethodReturnType.cs │ │ │ │ ├── ArrayReturnType.cs │ │ │ │ ├── AttributeReturnType.cs │ │ │ │ ├── BoundTypeParameter.cs │ │ │ │ ├── CombinedReturnType.cs │ │ │ │ ├── CompoundClass.cs │ │ │ │ ├── ConstructedReturnType.cs │ │ │ │ ├── DecoratingReturnType.cs │ │ │ │ ├── DefaultAttribute.cs │ │ │ │ ├── DefaultClass.cs │ │ │ │ ├── DefaultComment.cs │ │ │ │ ├── DefaultCompilationUnit.cs │ │ │ │ ├── DefaultEvent.cs │ │ │ │ ├── DefaultField.cs │ │ │ │ ├── DefaultMethod.cs │ │ │ │ ├── DefaultParameter.cs │ │ │ │ ├── DefaultProperty.cs │ │ │ │ ├── DefaultReturnType.cs │ │ │ │ ├── DefaultTypeParameter.cs │ │ │ │ ├── DefaultUsing.cs │ │ │ │ ├── DefaultUsingScope.cs │ │ │ │ ├── DynamicReturnType.cs │ │ │ │ ├── ElementReturnType.cs │ │ │ │ ├── GenericReturnType.cs │ │ │ │ ├── GetClassReturnType.cs │ │ │ │ ├── MethodGroupReturnType.cs │ │ │ │ ├── NullReturnType.cs │ │ │ │ ├── PointerReturnType.cs │ │ │ │ ├── ProxyReturnType.cs │ │ │ │ ├── ReferenceReturnType.cs │ │ │ │ ├── SearchClassReturnType.cs │ │ │ │ ├── SystemTypes.cs │ │ │ │ └── UnknownReturnType.cs │ │ │ ├── Interfaces │ │ │ │ ├── ClassType.cs │ │ │ │ ├── ExplicitInterfaceImplementation.cs │ │ │ │ ├── IAttribute.cs │ │ │ │ ├── IClass.cs │ │ │ │ ├── ICompilationUnit.cs │ │ │ │ ├── ICompletionEntry.cs │ │ │ │ ├── IDomProgressMonitor.cs │ │ │ │ ├── IEntity.cs │ │ │ │ ├── IEvent.cs │ │ │ │ ├── IField.cs │ │ │ │ ├── IFreezable.cs │ │ │ │ ├── IMember.cs │ │ │ │ ├── IMethod.cs │ │ │ │ ├── IParameter.cs │ │ │ │ ├── IProperty.cs │ │ │ │ ├── IReturnType.cs │ │ │ │ ├── ITypeParameter.cs │ │ │ │ ├── IUsing.cs │ │ │ │ ├── IUsingScope.cs │ │ │ │ ├── ModifierEnum.cs │ │ │ │ ├── ParameterModifiers.cs │ │ │ │ └── Region.cs │ │ │ ├── LanguageProperties.cs │ │ │ ├── LazyList.cs │ │ │ ├── LoggingService.cs │ │ │ ├── MemberLookupHelper.cs │ │ │ ├── NRefactoryResolver │ │ │ │ ├── CSharpToVBNetConvertVisitor.cs │ │ │ │ ├── CodeSnippetConverter.cs │ │ │ │ ├── InferredReturnType.cs │ │ │ │ ├── LambdaParameterReturnType.cs │ │ │ │ ├── LambdaReturnType.cs │ │ │ │ ├── NRefactoryASTConvertVisitor.cs │ │ │ │ ├── NRefactoryInformationProvider.cs │ │ │ │ ├── NRefactoryResolver.cs │ │ │ │ ├── ResolveVisitor.cs │ │ │ │ ├── TypeVisitor.cs │ │ │ │ └── VBNetToCSharpConvertVisitor.cs │ │ │ ├── ParameterListComparer.cs │ │ │ ├── ProjectContent │ │ │ │ ├── DefaultProjectContent.cs │ │ │ │ ├── DomAssemblyName.cs │ │ │ │ ├── IProjectContent.cs │ │ │ │ ├── ParseInformation.cs │ │ │ │ ├── ProjectContentRegistry.cs │ │ │ │ └── ReflectionProjectContent.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── ReadOnlyDictionary.cs │ │ │ ├── Refactoring │ │ │ │ ├── CSharpCodeGenerator.cs │ │ │ │ ├── CodeGenerator.cs │ │ │ │ ├── CodeGeneratorOptions.cs │ │ │ │ ├── IRefactoringDocument.cs │ │ │ │ ├── NRefactoryCodeGenerator.cs │ │ │ │ ├── NRefactoryRefactoringProvider.cs │ │ │ │ ├── RefactoringProvider.cs │ │ │ │ ├── TextFinder.cs │ │ │ │ └── VBNetCodeGenerator.cs │ │ │ ├── ReflectionLayer │ │ │ │ ├── DomPersistence.cs │ │ │ │ ├── ReflectionClass.cs │ │ │ │ ├── ReflectionEvent.cs │ │ │ │ ├── ReflectionField.cs │ │ │ │ ├── ReflectionLoader.cs │ │ │ │ ├── ReflectionMethod.cs │ │ │ │ ├── ReflectionParameter.cs │ │ │ │ ├── ReflectionProperty.cs │ │ │ │ ├── ReflectionReturnType.cs │ │ │ │ └── ReflectionTypeNameSyntaxError.cs │ │ │ ├── ResolveResult.cs │ │ │ ├── SignatureComparer.cs │ │ │ ├── Tag.cs │ │ │ ├── VBNet │ │ │ │ ├── ExpressionFinder.cs │ │ │ │ ├── IVBNetOptionProvider.cs │ │ │ │ ├── VBNetAmbience.cs │ │ │ │ ├── VBNetCompilationUnit.cs │ │ │ │ └── VBNetExpressionFinder.cs │ │ │ └── XmlDoc.cs │ │ │ ├── ICSharpCode.TextEditor │ │ │ ├── Actions │ │ │ │ ├── BookmarkActions.cs │ │ │ │ ├── CaretActions.cs │ │ │ │ ├── ClipBoardActions.cs │ │ │ │ ├── FoldActions.cs │ │ │ │ ├── FormatActions.cs │ │ │ │ ├── HomeEndActions.cs │ │ │ │ ├── IEditAction.cs │ │ │ │ ├── MiscActions.cs │ │ │ │ └── SelectionActions.cs │ │ │ ├── Document │ │ │ │ ├── AbstractSegment.cs │ │ │ │ ├── BookmarkManager │ │ │ │ │ ├── Bookmark.cs │ │ │ │ │ ├── BookmarkEventHandler.cs │ │ │ │ │ ├── BookmarkManager.cs │ │ │ │ │ └── BookmarkManagerMemento.cs │ │ │ │ ├── DefaultDocument.cs │ │ │ │ ├── DefaultTextEditorProperties.cs │ │ │ │ ├── DocumentEventArgs.cs │ │ │ │ ├── DocumentFactory.cs │ │ │ │ ├── FoldingStrategy │ │ │ │ │ ├── FoldMarker.cs │ │ │ │ │ ├── FoldingManager.cs │ │ │ │ │ ├── IFoldingStrategy.cs │ │ │ │ │ └── IndentFoldingStrategy.cs │ │ │ │ ├── FormattingStrategy │ │ │ │ │ ├── DefaultFormattingStrategy.cs │ │ │ │ │ └── IFormattingStrategy.cs │ │ │ │ ├── HighlightingStrategy │ │ │ │ │ ├── DefaultHighlightingStrategy.cs │ │ │ │ │ ├── FontContainer.cs │ │ │ │ │ ├── HighlightBackground.cs │ │ │ │ │ ├── HighlightColor.cs │ │ │ │ │ ├── HighlightInfo.cs │ │ │ │ │ ├── HighlightRuleSet.cs │ │ │ │ │ ├── HighlightingColorNotFoundException.cs │ │ │ │ │ ├── HighlightingDefinitionInvalidException.cs │ │ │ │ │ ├── HighlightingDefinitionParser.cs │ │ │ │ │ ├── HighlightingManager.cs │ │ │ │ │ ├── HighlightingStrategyFactory.cs │ │ │ │ │ ├── IHighlightingStrategy.cs │ │ │ │ │ ├── NextMarker.cs │ │ │ │ │ ├── PrevMarker.cs │ │ │ │ │ ├── Span.cs │ │ │ │ │ ├── SpanStack.cs │ │ │ │ │ ├── SyntaxModes │ │ │ │ │ │ ├── FileSyntaxModeProvider.cs │ │ │ │ │ │ ├── ISyntaxModeFileProvider.cs │ │ │ │ │ │ ├── ResourceSyntaxModeProvider.cs │ │ │ │ │ │ └── SyntaxMode.cs │ │ │ │ │ └── TextWord.cs │ │ │ │ ├── IDocument.cs │ │ │ │ ├── ISegment.cs │ │ │ │ ├── ITextEditorProperties.cs │ │ │ │ ├── LineManager │ │ │ │ │ ├── DeferredEventList.cs │ │ │ │ │ ├── LineManager.cs │ │ │ │ │ ├── LineManagerEventArgs.cs │ │ │ │ │ ├── LineSegment.cs │ │ │ │ │ └── LineSegmentTree.cs │ │ │ │ ├── MarkerStrategy │ │ │ │ │ ├── MarkerStrategy.cs │ │ │ │ │ └── TextMarker.cs │ │ │ │ ├── Selection │ │ │ │ │ ├── ColumnRange.cs │ │ │ │ │ ├── DefaultSelection.cs │ │ │ │ │ ├── ISelection.cs │ │ │ │ │ └── SelectionManager.cs │ │ │ │ ├── TextAnchor.cs │ │ │ │ ├── TextBufferStrategy │ │ │ │ │ ├── GapTextBufferStrategy.cs │ │ │ │ │ ├── ITextBufferStrategy.cs │ │ │ │ │ └── StringTextBufferStrategy.cs │ │ │ │ ├── TextLocation.cs │ │ │ │ └── TextUtilities.cs │ │ │ ├── Gui │ │ │ │ ├── AbstractMargin.cs │ │ │ │ ├── BracketHighlighter.cs │ │ │ │ ├── BrushRegistry.cs │ │ │ │ ├── Caret.cs │ │ │ │ ├── CompletionWindow │ │ │ │ │ ├── AbstractCompletionWindow.cs │ │ │ │ │ ├── CodeCompletionListView.cs │ │ │ │ │ ├── CodeCompletionWindow.cs │ │ │ │ │ ├── DeclarationViewWindow.cs │ │ │ │ │ ├── ICompletionData.cs │ │ │ │ │ └── ICompletionDataProvider.cs │ │ │ │ ├── DrawableLine.cs │ │ │ │ ├── FoldMargin.cs │ │ │ │ ├── GutterMargin.cs │ │ │ │ ├── HRuler.cs │ │ │ │ ├── IconBarMargin.cs │ │ │ │ ├── Ime.cs │ │ │ │ ├── InsightWindow │ │ │ │ │ ├── IInsightDataProvider.cs │ │ │ │ │ └── InsightWindow.cs │ │ │ │ ├── TextArea.cs │ │ │ │ ├── TextAreaClipboardHandler.cs │ │ │ │ ├── TextAreaControl.cs │ │ │ │ ├── TextAreaDragDropHandler.cs │ │ │ │ ├── TextAreaMouseHandler.cs │ │ │ │ ├── TextAreaUpdate.cs │ │ │ │ ├── TextEditorControl.cs │ │ │ │ ├── TextEditorControlBase.cs │ │ │ │ ├── TextView.cs │ │ │ │ └── ToolTipRequestEventArgs.cs │ │ │ ├── ICSharpCode.TextEditor.csproj │ │ │ ├── ICSharpCode.TextEditor.csproj.vspscc │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── ASPX.xshd │ │ │ │ ├── BAT-Mode.xshd │ │ │ │ ├── Boo.xshd │ │ │ │ ├── CPP-Mode.xshd │ │ │ │ ├── CSharp-Mode.xshd │ │ │ │ ├── Coco-Mode.xshd │ │ │ │ ├── HTML-Mode.xshd │ │ │ │ ├── Java-Mode.xshd │ │ │ │ ├── JavaScript-Mode.xshd │ │ │ │ ├── Mode.xsd │ │ │ │ ├── PHP-Mode.xshd │ │ │ │ ├── Patch-Mode.xshd │ │ │ │ ├── RightArrow.cur │ │ │ │ ├── SyntaxModes.xml │ │ │ │ ├── Tex-Mode.xshd │ │ │ │ ├── TextEditorControl.bmp │ │ │ │ ├── VBNET-Mode.xshd │ │ │ │ └── XML-Mode.xshd │ │ │ ├── Undo │ │ │ │ ├── IUndoableOperation.cs │ │ │ │ ├── UndoQueue.cs │ │ │ │ ├── UndoStack.cs │ │ │ │ ├── UndoableDelete.cs │ │ │ │ ├── UndoableInsert.cs │ │ │ │ └── UndoableReplace.cs │ │ │ └── Util │ │ │ │ ├── AugmentableRedBlackTree.cs │ │ │ │ ├── CheckedList.cs │ │ │ │ ├── FileReader.cs │ │ │ │ ├── LoggingService.cs │ │ │ │ ├── LookupTable.cs │ │ │ │ ├── MouseWheelHandler.cs │ │ │ │ ├── RedBlackTreeIterator.cs │ │ │ │ ├── RtfWriter.cs │ │ │ │ ├── TextUtility.cs │ │ │ │ ├── TipPainter.cs │ │ │ │ ├── TipPainterTools.cs │ │ │ │ ├── TipSection.cs │ │ │ │ ├── TipSpacer.cs │ │ │ │ ├── TipSplitter.cs │ │ │ │ ├── TipText.cs │ │ │ │ └── WeakCollection.cs │ │ │ ├── Mono.Cecil.Mdb │ │ │ ├── Mono.Cecil.Mdb.Reflexil.csproj │ │ │ ├── Mono.Cecil.Mdb.Reflexil.csproj.vspscc │ │ │ ├── Mono.Cecil.Mdb │ │ │ │ ├── MdbReader.cs │ │ │ │ └── MdbWriter.cs │ │ │ ├── Mono.CompilerServices.SymbolWriter │ │ │ │ ├── MonoSymbolFile.cs │ │ │ │ ├── MonoSymbolTable.cs │ │ │ │ ├── MonoSymbolWriter.cs │ │ │ │ └── SymbolWriterImpl.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Mono.Cecil.Pdb │ │ │ ├── Microsoft.Cci.Pdb │ │ │ │ ├── BitAccess.cs │ │ │ │ ├── BitSet.cs │ │ │ │ ├── CvInfo.cs │ │ │ │ ├── DataStream.cs │ │ │ │ ├── DbiDbgHdr.cs │ │ │ │ ├── DbiHeader.cs │ │ │ │ ├── DbiModuleInfo.cs │ │ │ │ ├── DbiSecCon.cs │ │ │ │ ├── IntHashTable.cs │ │ │ │ ├── Interfaces.cs │ │ │ │ ├── LICENSE │ │ │ │ ├── MsfDirectory.cs │ │ │ │ ├── PdbConstant.cs │ │ │ │ ├── PdbDebugException.cs │ │ │ │ ├── PdbException.cs │ │ │ │ ├── PdbFile.cs │ │ │ │ ├── PdbFileHeader.cs │ │ │ │ ├── PdbFunction.cs │ │ │ │ ├── PdbLine.cs │ │ │ │ ├── PdbLines.cs │ │ │ │ ├── PdbReader.cs │ │ │ │ ├── PdbScope.cs │ │ │ │ ├── PdbSlot.cs │ │ │ │ ├── PdbSource.cs │ │ │ │ └── SourceLocationProvider.cs │ │ │ ├── Mono.Cecil.Pdb.Reflexil.csproj │ │ │ ├── Mono.Cecil.Pdb.Reflexil.csproj.vspscc │ │ │ ├── Mono.Cecil.Pdb │ │ │ │ ├── ISymUnmanagedDocumentWriter.cs │ │ │ │ ├── ISymUnmanagedWriter2.cs │ │ │ │ ├── ModuleMetadata.cs │ │ │ │ ├── PdbHelper.cs │ │ │ │ ├── PdbReader.cs │ │ │ │ ├── PdbWriter.cs │ │ │ │ ├── SymDocumentWriter.cs │ │ │ │ └── SymWriter.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── Mono.Cecil │ │ │ ├── Mono.Cecil.Cil │ │ │ ├── Code.cs │ │ │ ├── CodeReader.cs │ │ │ ├── CodeWriter.cs │ │ │ ├── Document.cs │ │ │ ├── ExceptionHandler.cs │ │ │ ├── ILProcessor.cs │ │ │ ├── Instruction.cs │ │ │ ├── MethodBody.cs │ │ │ ├── OpCode.cs │ │ │ ├── OpCodes.cs │ │ │ ├── SequencePoint.cs │ │ │ ├── Symbols.cs │ │ │ ├── VariableDefinition.cs │ │ │ └── VariableReference.cs │ │ │ ├── Mono.Cecil.Legacy │ │ │ ├── CustomAttribute.cs │ │ │ ├── EventDefinition.cs │ │ │ ├── FieldDefinition.cs │ │ │ ├── GenericContext.cs │ │ │ ├── IReflectionVisitable.cs │ │ │ ├── IReflectionVisitor.cs │ │ │ ├── ImageFormatException.cs │ │ │ ├── MarshalInfo.cs │ │ │ ├── MemberReference.cs │ │ │ ├── MetadataFormatException.cs │ │ │ ├── MethodDefinition.cs │ │ │ ├── ModuleDefinition.cs │ │ │ ├── PInvokeInfo.cs │ │ │ ├── ParameterDefinition.cs │ │ │ ├── ParameterReference.cs │ │ │ ├── PropertyDefinition.cs │ │ │ ├── ReflectionException.cs │ │ │ ├── SecurityDeclaration.cs │ │ │ ├── TypeDefinition.cs │ │ │ └── TypeReference.cs │ │ │ ├── Mono.Cecil.Metadata │ │ │ ├── BlobHeap.cs │ │ │ ├── Buffers.cs │ │ │ ├── CodedIndex.cs │ │ │ ├── ElementType.cs │ │ │ ├── GuidHeap.cs │ │ │ ├── Heap.cs │ │ │ ├── MetadataToken.cs │ │ │ ├── Row.cs │ │ │ ├── StringHeap.cs │ │ │ ├── TableHeap.cs │ │ │ ├── TokenType.cs │ │ │ ├── UserStringHeap.cs │ │ │ └── Utilities.cs │ │ │ ├── Mono.Cecil.PE │ │ │ ├── BinaryStreamReader.cs │ │ │ ├── BinaryStreamWriter.cs │ │ │ ├── ByteBuffer.cs │ │ │ ├── ByteBufferEqualityComparer.cs │ │ │ ├── DataDirectory.cs │ │ │ ├── Image.cs │ │ │ ├── ImageReader.cs │ │ │ ├── ImageWriter.cs │ │ │ ├── Section.cs │ │ │ └── TextMap.cs │ │ │ ├── Mono.Cecil.Reflexil.csproj │ │ │ ├── Mono.Cecil.Reflexil.csproj.vspscc │ │ │ ├── Mono.Cecil │ │ │ ├── ArrayType.cs │ │ │ ├── AssemblyDefinition.cs │ │ │ ├── AssemblyFlags.cs │ │ │ ├── AssemblyHashAlgorithm.cs │ │ │ ├── AssemblyLinkedResource.cs │ │ │ ├── AssemblyNameDefinition.cs │ │ │ ├── AssemblyNameReference.cs │ │ │ ├── AssemblyReader.cs │ │ │ ├── AssemblyWriter.cs │ │ │ ├── BaseAssemblyResolver.cs │ │ │ ├── CallSite.cs │ │ │ ├── CustomAttribute.cs │ │ │ ├── DefaultAssemblyResolver.cs │ │ │ ├── EmbeddedResource.cs │ │ │ ├── EventAttributes.cs │ │ │ ├── EventDefinition.cs │ │ │ ├── EventReference.cs │ │ │ ├── ExportedType.cs │ │ │ ├── FieldAttributes.cs │ │ │ ├── FieldDefinition.cs │ │ │ ├── FieldReference.cs │ │ │ ├── FileAttributes.cs │ │ │ ├── FunctionPointerType.cs │ │ │ ├── GenericInstanceMethod.cs │ │ │ ├── GenericInstanceType.cs │ │ │ ├── GenericParameter.cs │ │ │ ├── GenericParameterAttributes.cs │ │ │ ├── IConstantProvider.cs │ │ │ ├── ICustomAttributeProvider.cs │ │ │ ├── IGenericInstance.cs │ │ │ ├── IGenericParameterProvider.cs │ │ │ ├── IMarshalInfoProvider.cs │ │ │ ├── IMemberDefinition.cs │ │ │ ├── IMetadataScope.cs │ │ │ ├── IMetadataTokenProvider.cs │ │ │ ├── IMethodSignature.cs │ │ │ ├── Import.cs │ │ │ ├── LinkedResource.cs │ │ │ ├── ManifestResourceAttributes.cs │ │ │ ├── MarshalInfo.cs │ │ │ ├── MemberDefinitionCollection.cs │ │ │ ├── MemberReference.cs │ │ │ ├── MetadataResolver.cs │ │ │ ├── MetadataSystem.cs │ │ │ ├── MethodAttributes.cs │ │ │ ├── MethodCallingConvention.cs │ │ │ ├── MethodDefinition.cs │ │ │ ├── MethodImplAttributes.cs │ │ │ ├── MethodReference.cs │ │ │ ├── MethodReturnType.cs │ │ │ ├── MethodSemanticsAttributes.cs │ │ │ ├── MethodSpecification.cs │ │ │ ├── Modifiers.cs │ │ │ ├── ModuleDefinition.cs │ │ │ ├── ModuleKind.cs │ │ │ ├── ModuleReference.cs │ │ │ ├── NativeType.cs │ │ │ ├── PInvokeAttributes.cs │ │ │ ├── PInvokeInfo.cs │ │ │ ├── ParameterAttributes.cs │ │ │ ├── ParameterDefinition.cs │ │ │ ├── ParameterDefinitionCollection.cs │ │ │ ├── ParameterReference.cs │ │ │ ├── PinnedType.cs │ │ │ ├── PointerType.cs │ │ │ ├── PropertyAttributes.cs │ │ │ ├── PropertyDefinition.cs │ │ │ ├── PropertyReference.cs │ │ │ ├── ReferenceType.cs │ │ │ ├── Resource.cs │ │ │ ├── SecurityDeclaration.cs │ │ │ ├── SentinelType.cs │ │ │ ├── TargetRuntime.cs │ │ │ ├── TypeAttributes.cs │ │ │ ├── TypeDefinition.cs │ │ │ ├── TypeDefinitionCollection.cs │ │ │ ├── TypeParser.cs │ │ │ ├── TypeReference.cs │ │ │ ├── TypeSpecification.cs │ │ │ ├── TypeSystem.cs │ │ │ └── VariantType.cs │ │ │ ├── Mono.Collections.Generic │ │ │ ├── Collection.cs │ │ │ └── ReadOnlyCollection.cs │ │ │ ├── Mono.Security.Cryptography │ │ │ ├── CryptoConvert.cs │ │ │ └── CryptoService.cs │ │ │ ├── Mono │ │ │ ├── Actions.cs │ │ │ ├── Empty.cs │ │ │ └── Funcs.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── System.Runtime.CompilerServices │ │ │ └── ExtensionAttribute.cs │ ├── Licenses │ │ ├── Reflexil │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── LGPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ └── triple.licensing.txt │ │ └── ThirdParty │ │ │ ├── Be.HexEditor │ │ │ └── LICENSE.Be.HexEditor.txt │ │ │ ├── De4dot │ │ │ ├── COPYING │ │ │ └── LICENSE.de4dot.txt │ │ │ ├── ICSharpCode.NRefactory │ │ │ └── LICENSE.ICSharpCode.NRefactory.txt │ │ │ ├── ICSharpCode.SharpDevelop.Dom │ │ │ ├── LGPL.txt │ │ │ └── README.txt │ │ │ ├── ICSharpCode.TextEditor │ │ │ ├── LGPL.txt │ │ │ └── README.txt │ │ │ └── Mono.Cecil │ │ │ └── LICENSE.Mono.Cecil.txt │ ├── MIT-LICENSE.txt │ ├── Plugins │ │ ├── BasePackage.cs │ │ ├── BasePlugin.cs │ │ ├── Cecil.Decompiler.Gui.Services │ │ │ ├── Cecil.Decompiler.Gui.Services.csproj │ │ │ ├── Cecil.Decompiler.Gui.Services.csproj.vspscc │ │ │ ├── Cecil.Decompiler.Gui.Services │ │ │ │ ├── ActionNames.cs │ │ │ │ ├── AssemblyLoadedEventArgs.cs │ │ │ │ ├── AssemblyLoadedEventHandler.cs │ │ │ │ ├── AssemblyUnloadedEventArgs.cs │ │ │ │ ├── AssemblyUnloadedEventHandler.cs │ │ │ │ ├── BarNames.cs │ │ │ │ ├── IAction.cs │ │ │ │ ├── IActionCollection.cs │ │ │ │ ├── IActionManager.cs │ │ │ │ ├── IActionNameContainer.cs │ │ │ │ ├── IAssemblyBrowser.cs │ │ │ │ ├── IAssemblyManager.cs │ │ │ │ ├── IBar.cs │ │ │ │ ├── IBarButton.cs │ │ │ │ ├── IBarCollection.cs │ │ │ │ ├── IBarControl.cs │ │ │ │ ├── IBarItem.cs │ │ │ │ ├── IBarItemCollection.cs │ │ │ │ ├── IBarManager.cs │ │ │ │ ├── IBarMenu.cs │ │ │ │ ├── IBarSeparator.cs │ │ │ │ ├── IPlugin.cs │ │ │ │ ├── IService.cs │ │ │ │ ├── IWindow.cs │ │ │ │ ├── IWindowCollection.cs │ │ │ │ ├── IWindowManager.cs │ │ │ │ └── WindowNames.cs │ │ │ └── GUI.Services.snk │ │ ├── GenericFactory.cs │ │ ├── IAssemblyContext.cs │ │ ├── IPackage.cs │ │ ├── IPlugin.cs │ │ ├── PluginFactory.cs │ │ ├── Reflexil.CecilStudio │ │ │ ├── Plugins │ │ │ │ ├── CecilStudioAssemblyContext.cs │ │ │ │ ├── CecilStudioAssemblyWrapper.cs │ │ │ │ ├── CecilStudioPackage.cs │ │ │ │ ├── CecilStudioPlugin.cs │ │ │ │ └── UIContext.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Reflexil.CecilStudio.csproj │ │ │ └── Reflexil.CecilStudio.csproj.vspscc │ │ └── Reflexil.Reflector │ │ │ ├── Libs │ │ │ └── Binaries │ │ │ │ └── put.reflector.here │ │ │ ├── Plugins │ │ │ ├── ReflectorAssemblyContext.cs │ │ │ ├── ReflectorAssemblyWrapper.cs │ │ │ ├── ReflectorHelper.cs │ │ │ ├── ReflectorPackage.cs │ │ │ ├── ReflectorPlugin.cs │ │ │ └── UIContext.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── Reflexil.Reflector.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── DataSources │ │ │ ├── Mono.Cecil.Cil.ExceptionHandler.datasource │ │ │ ├── Mono.Cecil.Cil.Instruction.datasource │ │ │ ├── Mono.Cecil.Cil.OpCode.datasource │ │ │ ├── Mono.Cecil.Cil.OpCodes.datasource │ │ │ ├── Mono.Cecil.Cil.VariableDefinition.datasource │ │ │ ├── Mono.Cecil.ParameterDefinition.datasource │ │ │ ├── Reflexil.Verifier.VerificationError.datasource │ │ │ └── System.CodeDom.Compiler.CompilerError.datasource │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── SolutionVersion.cs │ ├── README.FIRST.txt │ ├── Reflexil.csproj │ ├── Reflexil.csproj.vspscc │ ├── Reflexil.sln │ ├── Resources │ │ ├── bar.png │ │ ├── browser.png │ │ ├── copyhs.png │ │ ├── cuths.png │ │ ├── findhs.png │ │ ├── findnexths.png │ │ ├── opcodes.txt │ │ ├── openhs.png │ │ ├── pastehs.png │ │ ├── reflexil.png │ │ └── savehs.png │ ├── Todo │ ├── Utils │ │ ├── AssemblyHelper.cs │ │ ├── ByteHelper.cs │ │ ├── CecilHelper.cs │ │ ├── DeleteHelper.cs │ │ ├── EBarImages.cs │ │ ├── EBrowserImages.cs │ │ ├── EInjectType.cs │ │ ├── ENumericBase.cs │ │ ├── FrameworkVersionChecker.cs │ │ ├── InjectHelper.cs │ │ ├── PEVerifyUtility.cs │ │ ├── ReflexilAssemblyResolver.cs │ │ ├── RenameHelper.cs │ │ ├── SdkUtility.cs │ │ └── StrongNameUtility.cs │ ├── Verifier │ │ ├── AssemblyVerification.cs │ │ ├── IntermediateLanguageVerificationError.cs │ │ ├── MetadataVerificationError.cs │ │ ├── VerificationError.cs │ │ ├── VerificationErrorCollectionCreator.cs │ │ └── VerificationException.cs │ ├── Wrappers │ │ ├── IAssemblyWrapper.cs │ │ ├── IWrapper.cs │ │ ├── InstructionWrapper.cs │ │ ├── NamespaceWrapper.cs │ │ ├── OperandDisplayHelper.cs │ │ ├── ParameterWrapper.cs │ │ ├── PropertyWrapper.cs │ │ └── VariableWrapper.cs │ ├── app.config │ └── credits.txt └── reflexil.1.8.src │ ├── .gitignore │ ├── Build │ └── Binary │ │ ├── generate.AIO.bat │ │ ├── generate.bat │ │ └── tools │ │ ├── ILMerge.exe │ │ ├── cp.exe │ │ ├── grep.exe │ │ ├── mv.exe │ │ ├── rm.exe │ │ ├── sed.exe │ │ └── zip.exe │ ├── ChangeLog │ ├── Compilation │ ├── AppDomainHelper.cs │ ├── BaseLanguageHelper.cs │ ├── CSharpHelper.cs │ ├── Compiler.cs │ ├── ECSharpKeyword.cs │ ├── ESpaceSurrounder.cs │ ├── ESupportedLanguage.cs │ ├── EVisualBasicKeywords.cs │ ├── ILanguageHelper.cs │ ├── LanguageHelperFactory.cs │ └── VisualBasicHelper.cs │ ├── Controls │ ├── Body │ │ ├── GenericOperandReferenceEditor.cs │ │ ├── InstructionReferenceEditor.cs │ │ ├── MultipleInstructionReferenceEditor.cs │ │ ├── ParameterReferenceEditor.cs │ │ └── VariableReferenceEditor.cs │ ├── CheckBoxComboBox │ │ ├── CheckBoxComboBox.Designer.cs │ │ ├── CheckBoxComboBox.cs │ │ ├── GripBounds.cs │ │ ├── NativeMethods.cs │ │ ├── Popup.Designer.cs │ │ ├── Popup.cs │ │ ├── PopupComboBox.Designer.cs │ │ ├── PopupComboBox.cs │ │ ├── PopupComboBox.resx │ │ └── Selection Wrappers │ │ │ ├── ListSelectionWrapper.cs │ │ │ └── ObjectSelectionWrapper.cs │ ├── Context │ │ └── GenericTypeReferenceEditor.cs │ ├── Definition │ │ ├── AssemblyDefinitionControl.Designer.cs │ │ ├── AssemblyDefinitionControl.cs │ │ ├── AssemblyDefinitionControl.resx │ │ ├── AssemblyDefinitionEditor.Designer.cs │ │ ├── AssemblyDefinitionEditor.cs │ │ ├── AssemblyDefinitionEditor.resx │ │ ├── ConstantEditor.Designer.cs │ │ ├── ConstantEditor.cs │ │ ├── ConstantEditor.resx │ │ ├── CustomAttributeArgumentEditor.Designer.cs │ │ ├── CustomAttributeArgumentEditor.cs │ │ ├── CustomAttributeArgumentEditor.resx │ │ ├── HexEditorControl.Designer.cs │ │ ├── HexEditorControl.cs │ │ ├── HexEditorControl.resx │ │ ├── MethodDefinitionEditor.cs │ │ ├── ModuleDefinitionControl.Designer.cs │ │ ├── ModuleDefinitionControl.cs │ │ ├── ModuleDefinitionControl.resx │ │ └── TypeDefinitionEditor.cs │ ├── Grid │ │ ├── CustomAttributeArgumentGridControl.Designer.cs │ │ ├── CustomAttributeArgumentGridControl.cs │ │ ├── CustomAttributeGridControl.Designer.cs │ │ ├── CustomAttributeGridControl.cs │ │ ├── CustomAttributeNamedArgumentGridControl.Designer.cs │ │ ├── CustomAttributeNamedArgumentGridControl.cs │ │ ├── ExceptionHandlerGridControl.Designer.cs │ │ ├── ExceptionHandlerGridControl.cs │ │ ├── GridControl.Designer.cs │ │ ├── GridControl.cs │ │ ├── GridControl.resx │ │ ├── InstructionGridControl.Designer.cs │ │ ├── InstructionGridControl.cs │ │ ├── InterfaceGridControl.Designer.cs │ │ ├── InterfaceGridControl.cs │ │ ├── OverrideGridControl.Designer.cs │ │ ├── OverrideGridControl.cs │ │ ├── ParameterGridControl.Designer.cs │ │ ├── ParameterGridControl.cs │ │ ├── VariableGridControl.Designer.cs │ │ └── VariableGridControl.cs │ ├── IOperandEditor.cs │ ├── Misc │ │ ├── BasePopupControl.cs │ │ ├── TextComboUserControl.Designer.cs │ │ ├── TextComboUserControl.cs │ │ └── TextComboUserControl.resx │ ├── NoneOperandEditor.cs │ ├── NotSupportedOperandEditor.cs │ ├── NullOperandEditor.cs │ ├── Primitive │ │ ├── BooleanEditor.cs │ │ ├── ByteEditor.cs │ │ ├── DoubleEditor.cs │ │ ├── GenericOperandEditor.cs │ │ ├── GenericOperandEditorBridge.cs │ │ ├── IntegerEditor.cs │ │ ├── LongEditor.cs │ │ ├── SByteEditor.cs │ │ ├── SingleEditor.cs │ │ ├── StringEditor.cs │ │ └── VerbatimStringEditor.cs │ ├── Reference │ │ ├── ETypeSpecification.cs │ │ ├── FieldReferenceEditor.cs │ │ ├── GenericMemberReferenceEditor.cs │ │ ├── MethodReferenceEditor.cs │ │ ├── TypeReferenceEditor.cs │ │ ├── TypeSpecificationEditor.Designer.cs │ │ ├── TypeSpecificationEditor.cs │ │ └── TypeSpecificationEditor.resx │ └── Split │ │ ├── AssemblyNameDefinitionAttributesControl.Designer.cs │ │ ├── AssemblyNameDefinitionAttributesControl.cs │ │ ├── AssemblyNameDefinitionAttributesControl.resx │ │ ├── AssemblyNameReferenceAttributesControl.Designer.cs │ │ ├── AssemblyNameReferenceAttributesControl.cs │ │ ├── AssemblyNameReferenceAttributesControl.resx │ │ ├── AttributesControl.Designer.cs │ │ ├── AttributesControl.cs │ │ ├── AttributesControl.resx │ │ ├── EmbeddedResourceAttributesControl.Designer.cs │ │ ├── EmbeddedResourceAttributesControl.cs │ │ ├── EmbeddedResourceAttributesControl.resx │ │ ├── EventAttributesControl.Designer.cs │ │ ├── EventAttributesControl.cs │ │ ├── EventAttributesControl.resx │ │ ├── FieldAttributesControl.Designer.cs │ │ ├── FieldAttributesControl.cs │ │ ├── FieldAttributesControl.resx │ │ ├── LinkedResourceAttributesControl.Designer.cs │ │ ├── LinkedResourceAttributesControl.cs │ │ ├── LinkedResourceAttributesControl.resx │ │ ├── MethodAttributesControl.Designer.cs │ │ ├── MethodAttributesControl.cs │ │ ├── MethodAttributesControl.resx │ │ ├── PropertyAttributesControl.Designer.cs │ │ ├── PropertyAttributesControl.cs │ │ ├── PropertyAttributesControl.resx │ │ ├── ResourceAttributesControl.Designer.cs │ │ ├── ResourceAttributesControl.cs │ │ ├── ResourceAttributesControl.resx │ │ ├── SplitAttributesControl.Designer.cs │ │ ├── SplitAttributesControl.cs │ │ ├── SplitAttributesControl.resx │ │ ├── TypeAttributesControl.Designer.cs │ │ ├── TypeAttributesControl.cs │ │ └── TypeAttributesControl.resx │ ├── Forms │ ├── AssemblyCleanerForm.Designer.cs │ ├── AssemblyCleanerForm.cs │ ├── AssemblyCleanerForm.resx │ ├── CodeForm.Designer.cs │ ├── CodeForm.cs │ ├── CodeForm.resx │ ├── ConfigureForm.Designer.cs │ ├── ConfigureForm.cs │ ├── ConfigureForm.resx │ ├── CreateCustomAttributeArgumentForm.Designer.cs │ ├── CreateCustomAttributeArgumentForm.cs │ ├── CreateCustomAttributeArgumentForm.resx │ ├── CreateCustomAttributeForm.Designer.cs │ ├── CreateCustomAttributeForm.cs │ ├── CreateCustomAttributeForm.resx │ ├── CreateCustomAttributeNamedArgumentForm.Designer.cs │ ├── CreateCustomAttributeNamedArgumentForm.cs │ ├── CreateCustomAttributeNamedArgumentForm.resx │ ├── CreateExceptionHandlerForm.Designer.cs │ ├── CreateExceptionHandlerForm.cs │ ├── CreateExceptionHandlerForm.resx │ ├── CreateInstructionForm.Designer.cs │ ├── CreateInstructionForm.cs │ ├── CreateInstructionForm.resx │ ├── CreateInterfaceForm.Designer.cs │ ├── CreateInterfaceForm.cs │ ├── CreateInterfaceForm.resx │ ├── CreateOverrideForm.Designer.cs │ ├── CreateOverrideForm.cs │ ├── CreateOverrideForm.resx │ ├── CreateParameterForm.Designer.cs │ ├── CreateParameterForm.cs │ ├── CreateParameterForm.resx │ ├── CreateVariableForm.Designer.cs │ ├── CreateVariableForm.cs │ ├── CreateVariableForm.resx │ ├── CustomAttributeArgumentForm.Designer.cs │ ├── CustomAttributeArgumentForm.cs │ ├── CustomAttributeArgumentForm.resx │ ├── CustomAttributeForm.Designer.cs │ ├── CustomAttributeForm.cs │ ├── CustomAttributeForm.resx │ ├── CustomAttributeNamedArgumentForm.Designer.cs │ ├── CustomAttributeNamedArgumentForm.cs │ ├── CustomAttributeNamedArgumentForm.resx │ ├── DirectoryScanForm.Designer.cs │ ├── DirectoryScanForm.cs │ ├── DirectoryScanForm.resx │ ├── EditCustomAttributeArgumentForm.Designer.cs │ ├── EditCustomAttributeArgumentForm.cs │ ├── EditCustomAttributeArgumentForm.resx │ ├── EditCustomAttributeForm.Designer.cs │ ├── EditCustomAttributeForm.cs │ ├── EditCustomAttributeForm.resx │ ├── EditCustomAttributeNamedArgumentForm.Designer.cs │ ├── EditCustomAttributeNamedArgumentForm.cs │ ├── EditCustomAttributeNamedArgumentForm.resx │ ├── EditExceptionHandlerForm.Designer.cs │ ├── EditExceptionHandlerForm.cs │ ├── EditExceptionHandlerForm.resx │ ├── EditInstructionForm.Designer.cs │ ├── EditInstructionForm.cs │ ├── EditInstructionForm.resx │ ├── EditInterfaceForm.Designer.cs │ ├── EditInterfaceForm.cs │ ├── EditInterfaceForm.resx │ ├── EditOverrideForm.Designer.cs │ ├── EditOverrideForm.cs │ ├── EditOverrideForm.resx │ ├── EditParameterForm.Designer.cs │ ├── EditParameterForm.cs │ ├── EditParameterForm.resx │ ├── EditVariableForm.Designer.cs │ ├── EditVariableForm.cs │ ├── EditVariableForm.resx │ ├── ExceptionHandlerForm.Designer.cs │ ├── ExceptionHandlerForm.cs │ ├── ExceptionHandlerForm.resx │ ├── GenericMemberReferenceForm.Designer.cs │ ├── GenericMemberReferenceForm.cs │ ├── GenericMemberReferenceForm.resx │ ├── HexFindCancelForm.cs │ ├── HexFindCancelForm.resx │ ├── HexFindForm.cs │ ├── HexFindForm.resx │ ├── HexGotoForm.cs │ ├── HexGotoForm.resx │ ├── InjectForm.Designer.cs │ ├── InjectForm.cs │ ├── InjectForm.resx │ ├── InstructionForm.Designer.cs │ ├── InstructionForm.cs │ ├── InstructionForm.resx │ ├── InstructionSelectForm.Designer.cs │ ├── InstructionSelectForm.cs │ ├── InstructionSelectForm.resx │ ├── IntellisenseForm.Designer.cs │ ├── IntellisenseForm.cs │ ├── IntellisenseForm.resx │ ├── InterfaceForm.Designer.cs │ ├── InterfaceForm.cs │ ├── InterfaceForm.resx │ ├── ObfuscatorForm.Designer.cs │ ├── ObfuscatorForm.cs │ ├── ObfuscatorForm.resx │ ├── OverrideForm.Designer.cs │ ├── OverrideForm.cs │ ├── OverrideForm.resx │ ├── ParameterForm.Designer.cs │ ├── ParameterForm.cs │ ├── ParameterForm.resx │ ├── PropertyGridForm.Designer.cs │ ├── PropertyGridForm.cs │ ├── PropertyGridForm.resx │ ├── ReferenceUpdaterForm.Designer.cs │ ├── ReferenceUpdaterForm.cs │ ├── ReferenceUpdaterForm.resx │ ├── ReflexilWindow.Designer.cs │ ├── ReflexilWindow.cs │ ├── ReflexilWindow.resx │ ├── RenameForm.Designer.cs │ ├── RenameForm.cs │ ├── RenameForm.resx │ ├── StrongNameForm.Designer.cs │ ├── StrongNameForm.cs │ ├── StrongNameForm.resx │ ├── StrongNameRemoverForm.Designer.cs │ ├── StrongNameRemoverForm.cs │ ├── StrongNameRemoverForm.resx │ ├── SyncWarningForm.Designer.cs │ ├── SyncWarningForm.cs │ ├── SyncWarningForm.resx │ ├── TypeSpecificationForm.Designer.cs │ ├── TypeSpecificationForm.cs │ ├── TypeSpecificationForm.resx │ ├── VariableForm.Designer.cs │ ├── VariableForm.cs │ ├── VariableForm.resx │ ├── VerifierForm.Designer.cs │ ├── VerifierForm.cs │ └── VerifierForm.resx │ ├── Handlers │ ├── AssemblyDefinitionHandler.Designer.cs │ ├── AssemblyDefinitionHandler.cs │ ├── AssemblyDefinitionHandler.resx │ ├── AssemblyLinkedResourceHandler.Designer.cs │ ├── AssemblyLinkedResourceHandler.cs │ ├── AssemblyLinkedResourceHandler.resx │ ├── AssemblyNameReferenceHandler.Designer.cs │ ├── AssemblyNameReferenceHandler.cs │ ├── AssemblyNameReferenceHandler.resx │ ├── EmbeddedResourceHandler.Designer.cs │ ├── EmbeddedResourceHandler.cs │ ├── EmbeddedResourceHandler.resx │ ├── EventDefinitionHandler.Designer.cs │ ├── EventDefinitionHandler.cs │ ├── EventDefinitionHandler.resx │ ├── FieldDefinitionHandler.Designer.cs │ ├── FieldDefinitionHandler.cs │ ├── FieldDefinitionHandler.resx │ ├── IHandler.cs │ ├── LinkedResourceHandler.Designer.cs │ ├── LinkedResourceHandler.cs │ ├── LinkedResourceHandler.resx │ ├── MethodDefinitionHandler.Designer.cs │ ├── MethodDefinitionHandler.cs │ ├── MethodDefinitionHandler.resx │ ├── ModuleDefinitionHandler.Designer.cs │ ├── ModuleDefinitionHandler.cs │ ├── ModuleDefinitionHandler.resx │ ├── NotSupportedHandler.Designer.cs │ ├── NotSupportedHandler.cs │ ├── NotSupportedHandler.resx │ ├── PropertyDefinitionHandler.Designer.cs │ ├── PropertyDefinitionHandler.cs │ ├── PropertyDefinitionHandler.resx │ ├── TypeDefinitionHandler.Designer.cs │ ├── TypeDefinitionHandler.cs │ └── TypeDefinitionHandler.resx │ ├── Intellisense │ ├── CodeCompletionData.cs │ ├── CodeCompletionKeyHandler.cs │ ├── CodeCompletionProvider.cs │ ├── HostCallbackImplementation.cs │ ├── MethodInsightDataProvider.cs │ ├── RegionFoldingStrategy.cs │ └── ToolTipProvider.cs │ ├── Keys │ ├── ICSharpCode.NRefactory.snk │ ├── ICSharpCode.SharpDevelop.snk │ ├── ICSharpCode.TextEditor.snk │ ├── mono.snk │ └── reflexil.snk │ ├── Libs │ ├── Binaries │ │ ├── Be.Windows.Forms.HexBox.dll │ │ └── De4dot.dll │ └── Sources │ │ ├── De4dot │ │ ├── 0-readme.txt │ │ ├── 1-download.bat │ │ ├── 2-patch.bat │ │ ├── 3-compile.bat │ │ ├── 4-merge.bat │ │ ├── X-all.bat │ │ ├── patch │ │ │ └── de4dot.sln │ │ └── sources │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── AssemblyData │ │ │ ├── AssemblyData.csproj │ │ │ ├── AssemblyResolver.cs │ │ │ ├── AssemblyServer.cs │ │ │ ├── AssemblyService.cs │ │ │ ├── DelegateStringDecrypter.cs │ │ │ ├── EmuStringDecrypter.cs │ │ │ ├── GenericService.cs │ │ │ ├── IAssemblyService.cs │ │ │ ├── IGenericService.cs │ │ │ ├── IMethodDecrypterService.cs │ │ │ ├── IStringDecrypter.cs │ │ │ ├── IStringDecrypterService.cs │ │ │ ├── IUserGenericService.cs │ │ │ ├── MethodDecrypterService.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SimpleData.cs │ │ │ ├── StringDecrypterService.cs │ │ │ ├── Utils.cs │ │ │ └── methodsrewriter │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ ├── CodeGenerator.cs │ │ │ │ ├── IMethodsRewriter.cs │ │ │ │ ├── MField.cs │ │ │ │ ├── MMethod.cs │ │ │ │ ├── MModule.cs │ │ │ │ ├── MType.cs │ │ │ │ ├── MethodsRewriter.cs │ │ │ │ ├── Operand.cs │ │ │ │ ├── Resolver.cs │ │ │ │ ├── ResolverUtils.cs │ │ │ │ ├── TypeInstanceResolver.cs │ │ │ │ └── TypeResolver.cs │ │ │ ├── AssemblyServer-CLR20-x64 │ │ │ ├── App.config │ │ │ ├── AssemblyServer-CLR20-x64.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── AssemblyServer-CLR20 │ │ │ ├── App.config │ │ │ ├── AssemblyServer-CLR20.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── AssemblyServer-CLR40-x64 │ │ │ ├── App.config │ │ │ ├── AssemblyServer-CLR40-x64.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── AssemblyServer-CLR40 │ │ │ ├── App.config │ │ │ ├── AssemblyServer-CLR40.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── AssemblyServer-x64 │ │ │ ├── App.config │ │ │ ├── AssemblyServer-x64.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── AssemblyServer │ │ │ ├── App.config │ │ │ ├── AssemblyServer.csproj │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── COPYING │ │ │ ├── LICENSE.ICSharpCode.SharpZipLib.txt │ │ │ ├── LICENSE.QuickLZ.txt │ │ │ ├── LICENSE.de4dot.txt │ │ │ ├── LICENSE.dnlib.txt │ │ │ ├── LICENSE.lzmat.txt │ │ │ ├── LICENSE.randomc.txt │ │ │ ├── README.md │ │ │ ├── Test.Rename │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── Test.Rename.csproj │ │ │ ├── de4dot-x64 │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── de4dot-x64.csproj │ │ │ ├── de4dot.blocks │ │ │ ├── BaseBlock.cs │ │ │ ├── Block.cs │ │ │ ├── Blocks.cs │ │ │ ├── BlocksSorter.cs │ │ │ ├── CodeGenerator.cs │ │ │ ├── DeadBlocksRemover.cs │ │ │ ├── DotNetUtils.cs │ │ │ ├── DumpedMethod.cs │ │ │ ├── DumpedMethods.cs │ │ │ ├── FilterHandlerBlock.cs │ │ │ ├── ForwardScanOrder.cs │ │ │ ├── GenericArgsSubstitutor.cs │ │ │ ├── HandlerBlock.cs │ │ │ ├── Instr.cs │ │ │ ├── InstructionListParser.cs │ │ │ ├── MemberDefDict.cs │ │ │ ├── MethodBlocks.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── ScopeBlock.cs │ │ │ ├── StackTracePatcher.cs │ │ │ ├── TryBlock.cs │ │ │ ├── TryHandlerBlock.cs │ │ │ ├── Utils.cs │ │ │ ├── cflow │ │ │ │ ├── BlockCflowDeobfuscator.cs │ │ │ │ ├── BlockDeobfuscator.cs │ │ │ │ ├── BlocksCflowDeobfuscator.cs │ │ │ │ ├── BranchEmulator.cs │ │ │ │ ├── CachedCflowDeobfuscator.cs │ │ │ │ ├── CflowDeobfuscator.cs │ │ │ │ ├── CflowUtils.cs │ │ │ │ ├── ConstantsFolder.cs │ │ │ │ ├── DeadCodeRemover.cs │ │ │ │ ├── DeadStoreRemover.cs │ │ │ │ ├── DupBlockDeobfuscator.cs │ │ │ │ ├── IBlocksDeobfuscator.cs │ │ │ │ ├── ICflowDeobfuscator.cs │ │ │ │ ├── InstructionEmulator.cs │ │ │ │ ├── Int32Value.cs │ │ │ │ ├── Int64Value.cs │ │ │ │ ├── MethodCallInliner.cs │ │ │ │ ├── MethodCallInlinerBase.cs │ │ │ │ ├── Real8Value.cs │ │ │ │ ├── StLdlocFixer.cs │ │ │ │ ├── SwitchCflowDeobfuscator.cs │ │ │ │ ├── Value.cs │ │ │ │ └── ValueStack.cs │ │ │ └── de4dot.blocks.csproj │ │ │ ├── de4dot.code │ │ │ ├── AssemblyClient │ │ │ │ ├── AssemblyClient.cs │ │ │ │ ├── AssemblyClientFactory.cs │ │ │ │ ├── IAssemblyClient.cs │ │ │ │ ├── IAssemblyServerLoader.cs │ │ │ │ ├── IpcAssemblyServerLoader.cs │ │ │ │ ├── NewAppDomainAssemblyServerLoader.cs │ │ │ │ ├── NewProcessAssemblyServerLoader.cs │ │ │ │ └── SameAppDomainAssemblyServerLoader.cs │ │ │ ├── AssemblyModule.cs │ │ │ ├── AssemblyResolver.cs │ │ │ ├── DeobfuscatorContext.cs │ │ │ ├── DumpedMethodsRestorer.cs │ │ │ ├── HandleProcessCorruptedStateExceptionsAttribute.cs │ │ │ ├── IDeobfuscatorContext.cs │ │ │ ├── IObfuscatedFile.cs │ │ │ ├── Logger.cs │ │ │ ├── MethodPrinter.cs │ │ │ ├── MethodReturnValueInliner.cs │ │ │ ├── NameRegexes.cs │ │ │ ├── ObfuscatedFile.cs │ │ │ ├── Option.cs │ │ │ ├── PrintNewTokens.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SharpZipLib │ │ │ │ ├── Checksums │ │ │ │ │ ├── Adler32.cs │ │ │ │ │ └── IChecksum.cs │ │ │ │ ├── Main.cs │ │ │ │ ├── SharpZipBaseException.cs │ │ │ │ └── Zip │ │ │ │ │ └── Compression │ │ │ │ │ ├── Inflater.cs │ │ │ │ │ ├── InflaterDynHeader.cs │ │ │ │ │ ├── InflaterHuffmanTree.cs │ │ │ │ │ └── Streams │ │ │ │ │ ├── OutputWindow.cs │ │ │ │ │ └── StreamManipulator.cs │ │ │ ├── StringInliner.cs │ │ │ ├── UserException.cs │ │ │ ├── Utils.cs │ │ │ ├── Win32Path.cs │ │ │ ├── de4dot.code.csproj │ │ │ ├── deobfuscators │ │ │ │ ├── Agile_NET │ │ │ │ │ ├── CliSecureRtType.cs │ │ │ │ │ ├── CsBlowfish.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── StackFrameHelper.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── vm │ │ │ │ │ │ ├── CilOperandInstructionRestorer.cs │ │ │ │ │ │ ├── CsvmDataReader.cs │ │ │ │ │ │ ├── CsvmMethodData.cs │ │ │ │ │ │ ├── CsvmToCilMethodConverterBase.cs │ │ │ │ │ │ ├── VmOperand.cs │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── Csvm.cs │ │ │ │ │ │ ├── CsvmToCilMethodConverter.cs │ │ │ │ │ │ ├── FieldsInfo.cs │ │ │ │ │ │ ├── OpCodeHandler.cs │ │ │ │ │ │ ├── OpCodeHandlers.cs │ │ │ │ │ │ ├── UnknownHandlerInfo.cs │ │ │ │ │ │ └── VmOpCodeHandlerDetector.cs │ │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── CSVM1_v2.bin │ │ │ │ │ │ ├── CSVM2_v2.bin │ │ │ │ │ │ ├── CSVM3_v2.bin │ │ │ │ │ │ ├── CompositeHandlerDetector.cs │ │ │ │ │ │ ├── CompositeOpCodeHandler.cs │ │ │ │ │ │ ├── Csvm.cs │ │ │ │ │ │ ├── CsvmInfo.cs │ │ │ │ │ │ ├── CsvmResources.Designer.cs │ │ │ │ │ │ ├── CsvmResources.resx │ │ │ │ │ │ ├── CsvmToCilMethodConverter.cs │ │ │ │ │ │ ├── HandlerTypeCode.cs │ │ │ │ │ │ ├── MethodFinder.cs │ │ │ │ │ │ ├── MethodSigInfoCreator.cs │ │ │ │ │ │ ├── OpCodeHandler.cs │ │ │ │ │ │ ├── OpCodeHandlerInfo.cs │ │ │ │ │ │ ├── OpCodeHandlerInfoReader.cs │ │ │ │ │ │ ├── OpCodeHandlerInfos.cs │ │ │ │ │ │ ├── VmOpCode.cs │ │ │ │ │ │ └── VmOpCodeHandlerDetector.cs │ │ │ │ ├── ArrayFinder.cs │ │ │ │ ├── Babel_NET │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── BabelInflater.cs │ │ │ │ │ ├── BabelMethodCallInliner.cs │ │ │ │ │ ├── BabelUtils.cs │ │ │ │ │ ├── ConstantsDecrypter.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── ImageReader.cs │ │ │ │ │ ├── InflaterCreator.cs │ │ │ │ │ ├── MemberReferenceConverter.cs │ │ │ │ │ ├── MethodBodyReader.cs │ │ │ │ │ ├── MethodReferenceReader.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── Blowfish.cs │ │ │ │ ├── CRC32.cs │ │ │ │ ├── CodeFort │ │ │ │ │ ├── AssemblyData.cs │ │ │ │ │ ├── AssemblyDecrypter.cs │ │ │ │ │ ├── CfMethodCallInliner.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── PasswordFinder.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── CodeVeil │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── ErexResourceReader.cs │ │ │ │ │ ├── InvalidDataException.cs │ │ │ │ │ ├── InvalidMethodsFinder.cs │ │ │ │ │ ├── MainType.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── ObfuscatorVersion.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceConverter.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── ResourceInfo.cs │ │ │ │ │ ├── ResourceReader.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── TamperDetection.cs │ │ │ │ ├── CodeWall │ │ │ │ │ ├── AssemblyDecrypter.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── KeyGenerator.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── randomc │ │ │ │ │ │ ├── CRandomMersenne.cs │ │ │ │ │ │ └── CRandomMother.cs │ │ │ │ ├── ConstantsReader.cs │ │ │ │ ├── CryptoObfuscator │ │ │ │ │ ├── AntiDebugger.cs │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── CoMethodCallInliner.cs │ │ │ │ │ ├── CoUtils.cs │ │ │ │ │ ├── ConstantsDecrypter.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── InlinedMethodTypes.cs │ │ │ │ │ ├── LdnullFixer.cs │ │ │ │ │ ├── MethodBodyReader.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── TamperDetection.cs │ │ │ │ ├── DeepSea │ │ │ │ │ ├── ArrayBlockDeobfuscator.cs │ │ │ │ │ ├── ArrayBlockState.cs │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── CastDeobfuscator.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── DsConstantsReader.cs │ │ │ │ │ ├── DsInlinedMethodsFinder.cs │ │ │ │ │ ├── DsMethodCallInliner.cs │ │ │ │ │ ├── DsUtils.cs │ │ │ │ │ ├── FieldsRestorer.cs │ │ │ │ │ ├── ResolverBase.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── DeobUtils.cs │ │ │ │ ├── DeobfuscatorBase.cs │ │ │ │ ├── DeobfuscatorInfoBase.cs │ │ │ │ ├── Dotfuscator │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── Eazfuscator_NET │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── CodeCompilerMethodCallRestorer.cs │ │ │ │ │ ├── DecrypterType.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── DynamicDynocodeIterator.cs │ │ │ │ │ ├── DynocodeService.cs │ │ │ │ │ ├── EfConstantsReader.cs │ │ │ │ │ ├── EfUtils.cs │ │ │ │ │ ├── ResourceMethodsRestorer.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── VersionDetector.cs │ │ │ │ ├── ExceptionLoggerRemover.cs │ │ │ │ ├── Goliath_NET │ │ │ │ │ ├── ArrayDecrypter.cs │ │ │ │ │ ├── ArrayValueInliner.cs │ │ │ │ │ ├── DecrypterBase.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── IntegerDecrypter.cs │ │ │ │ │ ├── LocalsRestorer.cs │ │ │ │ │ ├── LogicalExpressionFixer.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ └── StrongNameChecker.cs │ │ │ │ ├── IDeobfuscatedFile.cs │ │ │ │ ├── IDeobfuscator.cs │ │ │ │ ├── IDeobfuscatorInfo.cs │ │ │ │ ├── ILProtector │ │ │ │ │ ├── DecryptedMethodInfo.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── DynamicMethodsDecrypter.cs │ │ │ │ │ ├── DynamicMethodsDecrypterService.cs │ │ │ │ │ ├── DynamicMethodsRestorer.cs │ │ │ │ │ ├── MainType.cs │ │ │ │ │ ├── MethodReader.cs │ │ │ │ │ ├── MethodsDecrypterBase.cs │ │ │ │ │ ├── RuntimeFileInfo.cs │ │ │ │ │ └── StaticMethodsDecrypter.cs │ │ │ │ ├── ISimpleDeobfuscator.cs │ │ │ │ ├── InitializedDataCreator.cs │ │ │ │ ├── InlinedMethodsFinder.cs │ │ │ │ ├── MPRESS │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ └── Lzmat.cs │ │ │ │ ├── MaxtoCode │ │ │ │ │ ├── CryptDecrypter.cs │ │ │ │ │ ├── Decrypter6.cs │ │ │ │ │ ├── DecrypterInfo.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── EncryptionInfos.cs │ │ │ │ │ ├── MainType.cs │ │ │ │ │ ├── McKey.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── PeHeader.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── MemberReferenceBuilder.cs │ │ │ │ ├── MethodBodyParser.cs │ │ │ │ ├── MethodCallRestorerBase.cs │ │ │ │ ├── MethodCollection.cs │ │ │ │ ├── MethodStack.cs │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ ├── MyPEImage.cs │ │ │ │ ├── NullStream.cs │ │ │ │ ├── Operations.cs │ │ │ │ ├── ProxyCallFixerBase.cs │ │ │ │ ├── QuickLZ.cs │ │ │ │ ├── RandomNameChecker.cs │ │ │ │ ├── Rummage │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── RummageVersion.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── Skater_NET │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── EnumClassFinder.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── SmartAssembly │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── AssemblyResolverInfo.cs │ │ │ │ │ ├── AutomatedErrorReportingFinder.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── MemoryManagerInfo.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResolverInfoBase.cs │ │ │ │ │ ├── ResourceDecrypter.cs │ │ │ │ │ ├── ResourceDecrypterInfo.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ ├── ResourceResolverInfo.cs │ │ │ │ │ ├── SimpleZipInfo.cs │ │ │ │ │ ├── StringDecrypter.cs │ │ │ │ │ ├── StringDecrypterInfo.cs │ │ │ │ │ ├── StringEncoderClassFinder.cs │ │ │ │ │ └── TamperProtectionRemover.cs │ │ │ │ ├── Spices_Net │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── QclzDecompressor.cs │ │ │ │ │ ├── ResourceNamesRestorer.cs │ │ │ │ │ ├── SpicesMethodCallInliner.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ ├── StringCounts.cs │ │ │ │ ├── TypesRestorer.cs │ │ │ │ ├── Unknown │ │ │ │ │ └── Deobfuscator.cs │ │ │ │ ├── UnpackedFile.cs │ │ │ │ ├── UnusedMethodsFinder.cs │ │ │ │ ├── ValueInlinerBase.cs │ │ │ │ ├── Xenocode │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ │ └── dotNET_Reactor │ │ │ │ │ ├── v3 │ │ │ │ │ ├── AntiStrongName.cs │ │ │ │ │ ├── ApplicationModeDecrypter.cs │ │ │ │ │ ├── ApplicationModeUnpacker.cs │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── DecryptMethod.cs │ │ │ │ │ ├── DecrypterType.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── LibAssemblyResolver.cs │ │ │ │ │ ├── MemoryPatcher.cs │ │ │ │ │ └── NativeLibSaver.cs │ │ │ │ │ └── v4 │ │ │ │ │ ├── AntiStrongname.cs │ │ │ │ │ ├── AssemblyResolver.cs │ │ │ │ │ ├── BooleanDecrypter.cs │ │ │ │ │ ├── Deobfuscator.cs │ │ │ │ │ ├── DnrMethodCallInliner.cs │ │ │ │ │ ├── EmptyClass.cs │ │ │ │ │ ├── EncryptedResource.cs │ │ │ │ │ ├── MetadataTokenObfuscator.cs │ │ │ │ │ ├── MethodsDecrypter.cs │ │ │ │ │ ├── NativeFileDecrypter.cs │ │ │ │ │ ├── NativeImageUnpacker.cs │ │ │ │ │ ├── ProxyCallFixer.cs │ │ │ │ │ ├── ResourceResolver.cs │ │ │ │ │ └── StringDecrypter.cs │ │ │ ├── renamer │ │ │ │ ├── DerivedFrom.cs │ │ │ │ ├── ExistingNames.cs │ │ │ │ ├── INameChecker.cs │ │ │ │ ├── MemberInfos.cs │ │ │ │ ├── NameCreators.cs │ │ │ │ ├── Renamer.cs │ │ │ │ ├── ResourceKeysRenamer.cs │ │ │ │ ├── ResourceRenamer.cs │ │ │ │ ├── TypeInfo.cs │ │ │ │ ├── TypeNames.cs │ │ │ │ ├── TypeRenamerState.cs │ │ │ │ ├── VariableNameState.cs │ │ │ │ └── asmmodules │ │ │ │ │ ├── EventDef.cs │ │ │ │ │ ├── FieldDef.cs │ │ │ │ │ ├── GenericParamDef.cs │ │ │ │ │ ├── IResolver.cs │ │ │ │ │ ├── MemberRefFinder.cs │ │ │ │ │ ├── MethodDef.cs │ │ │ │ │ ├── MethodNameGroups.cs │ │ │ │ │ ├── Module.cs │ │ │ │ │ ├── Modules.cs │ │ │ │ │ ├── ParamDef.cs │ │ │ │ │ ├── PropertyDef.cs │ │ │ │ │ ├── Ref.cs │ │ │ │ │ ├── RefDict.cs │ │ │ │ │ └── TypeDef.cs │ │ │ └── resources │ │ │ │ ├── BuiltInResourceData.cs │ │ │ │ ├── IResourceData.cs │ │ │ │ ├── ResourceDataCreator.cs │ │ │ │ ├── ResourceElement.cs │ │ │ │ ├── ResourceElementSet.cs │ │ │ │ ├── ResourceReader.cs │ │ │ │ ├── ResourceTypeCode.cs │ │ │ │ ├── ResourceWriter.cs │ │ │ │ ├── UserResourceData.cs │ │ │ │ └── UserResourceType.cs │ │ │ ├── de4dot.cui │ │ │ ├── CommandLineParser.cs │ │ │ ├── FilesDeobfuscator.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── de4dot.cui.csproj │ │ │ ├── de4dot.mdecrypt │ │ │ ├── DecryptMethodsInfo.cs │ │ │ ├── DynamicMethodsDecrypter.cs │ │ │ ├── NativeCodeGenerator.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── de4dot.mdecrypt.csproj │ │ │ ├── de4dot.sln │ │ │ ├── de4dot.snk │ │ │ ├── de4dot │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── de4dot.csproj │ │ │ └── dnlib │ │ │ ├── dnlib.snk │ │ │ └── src │ │ │ ├── DotNet │ │ │ ├── AccessChecker.cs │ │ │ ├── AllTypesHelper.cs │ │ │ ├── AssemblyAttributes.cs │ │ │ ├── AssemblyDef.cs │ │ │ ├── AssemblyHash.cs │ │ │ ├── AssemblyHashAlgorithm.cs │ │ │ ├── AssemblyNameComparer.cs │ │ │ ├── AssemblyNameInfo.cs │ │ │ ├── AssemblyRef.cs │ │ │ ├── AssemblyResolver.cs │ │ │ ├── CallingConvention.cs │ │ │ ├── CallingConventionSig.cs │ │ │ ├── ClassLayout.cs │ │ │ ├── Constant.cs │ │ │ ├── CorLibTypes.cs │ │ │ ├── CustomAttribute.cs │ │ │ ├── CustomAttributeCollection.cs │ │ │ ├── CustomAttributeReader.cs │ │ │ ├── DeclSecurity.cs │ │ │ ├── DeclSecurityAction.cs │ │ │ ├── ElementType.cs │ │ │ ├── Emit │ │ │ │ ├── Code.cs │ │ │ │ ├── ExceptionHandler.cs │ │ │ │ ├── ExceptionHandlerType.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── FlowControl.cs │ │ │ │ ├── Instruction.cs │ │ │ │ ├── InstructionPrinter.cs │ │ │ │ ├── InvalidMethodException.cs │ │ │ │ ├── LocalList.cs │ │ │ │ ├── MethodBody.cs │ │ │ │ ├── MethodBodyReader.cs │ │ │ │ ├── MethodBodyReaderBase.cs │ │ │ │ ├── MethodUtils.cs │ │ │ │ ├── OpCode.cs │ │ │ │ ├── OpCodeType.cs │ │ │ │ ├── OpCodes.cs │ │ │ │ ├── OperandType.cs │ │ │ │ └── StackBehaviour.cs │ │ │ ├── EventAttributes.cs │ │ │ ├── EventDef.cs │ │ │ ├── ExportedType.cs │ │ │ ├── Extensions.cs │ │ │ ├── FieldAttributes.cs │ │ │ ├── FieldDef.cs │ │ │ ├── FieldMarshal.cs │ │ │ ├── FileAttributes.cs │ │ │ ├── FileDef.cs │ │ │ ├── FullNameCreator.cs │ │ │ ├── GenericArguments.cs │ │ │ ├── GenericParam.cs │ │ │ ├── GenericParamAttributes.cs │ │ │ ├── GenericParamConstraint.cs │ │ │ ├── IAssemblyResolver.cs │ │ │ ├── ICodedToken.cs │ │ │ ├── ICorLibTypes.cs │ │ │ ├── IDecrypters.cs │ │ │ ├── ILogger.cs │ │ │ ├── IResolver.cs │ │ │ ├── IType.cs │ │ │ ├── ITypeDefFinder.cs │ │ │ ├── IVariable.cs │ │ │ ├── ImplMap.cs │ │ │ ├── Importer.cs │ │ │ ├── InterfaceImpl.cs │ │ │ ├── MD │ │ │ │ ├── BlobStream.cs │ │ │ │ ├── CodedToken.cs │ │ │ │ ├── ColumnInfo.cs │ │ │ │ ├── ColumnSize.cs │ │ │ │ ├── ComImageFlags.cs │ │ │ │ ├── CompressedMetaData.cs │ │ │ │ ├── DotNetFile.cs │ │ │ │ ├── DotNetStream.cs │ │ │ │ ├── DotNetTableSizes.cs │ │ │ │ ├── ENCMetaData.cs │ │ │ │ ├── GuidStream.cs │ │ │ │ ├── IMetaData.cs │ │ │ │ ├── IRowReaders.cs │ │ │ │ ├── ImageCor20Header.cs │ │ │ │ ├── MDHeaderRuntimeVersion.cs │ │ │ │ ├── MDStreamFlags.cs │ │ │ │ ├── MDTable.cs │ │ │ │ ├── MetaData.cs │ │ │ │ ├── MetaDataHeader.cs │ │ │ │ ├── RawRowEqualityComparer.cs │ │ │ │ ├── RawTableRows.cs │ │ │ │ ├── RidList.cs │ │ │ │ ├── StorageFlags.cs │ │ │ │ ├── StreamHeader.cs │ │ │ │ ├── StringsStream.cs │ │ │ │ ├── Table.cs │ │ │ │ ├── TableInfo.cs │ │ │ │ ├── TablesStream.cs │ │ │ │ ├── TablesStream_Read.cs │ │ │ │ └── USStream.cs │ │ │ ├── MDToken.cs │ │ │ ├── ManifestResource.cs │ │ │ ├── ManifestResourceAttributes.cs │ │ │ ├── MemberMDInitializer.cs │ │ │ ├── MemberRef.cs │ │ │ ├── MethodAttributes.cs │ │ │ ├── MethodDef.cs │ │ │ ├── MethodImplAttributes.cs │ │ │ ├── MethodOverride.cs │ │ │ ├── MethodSemanticsAttributes.cs │ │ │ ├── MethodSpec.cs │ │ │ ├── ModuleContext.cs │ │ │ ├── ModuleDef.cs │ │ │ ├── ModuleDefMD.cs │ │ │ ├── ModuleKind.cs │ │ │ ├── ModuleRef.cs │ │ │ ├── NullResolver.cs │ │ │ ├── PInvokeAttributes.cs │ │ │ ├── ParamAttributes.cs │ │ │ ├── ParamDef.cs │ │ │ ├── ParameterList.cs │ │ │ ├── PropertyAttributes.cs │ │ │ ├── PropertyDef.cs │ │ │ ├── PublicKey.cs │ │ │ ├── PublicKeyBase.cs │ │ │ ├── PublicKeyToken.cs │ │ │ ├── RecursionCounter.cs │ │ │ ├── ReflectionExtensions.cs │ │ │ ├── ResolveException.cs │ │ │ ├── Resolver.cs │ │ │ ├── Resource.cs │ │ │ ├── SerializationType.cs │ │ │ ├── SigComparer.cs │ │ │ ├── SignatureReader.cs │ │ │ ├── StandAloneSig.cs │ │ │ ├── StrongNameKey.cs │ │ │ ├── StrongNameSigner.cs │ │ │ ├── TypeAttributes.cs │ │ │ ├── TypeDef.cs │ │ │ ├── TypeDefFinder.cs │ │ │ ├── TypeNameParser.cs │ │ │ ├── TypeRef.cs │ │ │ ├── TypeSig.cs │ │ │ ├── TypeSpec.cs │ │ │ ├── UTF8String.cs │ │ │ ├── Utils.cs │ │ │ ├── VTableFixups.cs │ │ │ └── Writer │ │ │ │ ├── BinaryReaderChunk.cs │ │ │ │ ├── BlobHeap.cs │ │ │ │ ├── ByteArrayChunk.cs │ │ │ │ ├── ChunkList.cs │ │ │ │ ├── ChunkListBase.cs │ │ │ │ ├── CustomAttributeWriter.cs │ │ │ │ ├── DebugDirectory.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── GuidHeap.cs │ │ │ │ ├── HeapBase.cs │ │ │ │ ├── IChunk.cs │ │ │ │ ├── IHeap.cs │ │ │ │ ├── IMetaDataListener.cs │ │ │ │ ├── IModuleWriterListener.cs │ │ │ │ ├── ImageCor20Header.cs │ │ │ │ ├── ImportAddressTable.cs │ │ │ │ ├── ImportDirectory.cs │ │ │ │ ├── MDTable.cs │ │ │ │ ├── MDTableWriter.cs │ │ │ │ ├── MaxStackCalculator.cs │ │ │ │ ├── MetaData.cs │ │ │ │ ├── MetaDataHeader.cs │ │ │ │ ├── MethodBody.cs │ │ │ │ ├── MethodBodyChunks.cs │ │ │ │ ├── MethodBodyWriter.cs │ │ │ │ ├── MethodBodyWriterBase.cs │ │ │ │ ├── ModuleWriter.cs │ │ │ │ ├── ModuleWriterBase.cs │ │ │ │ ├── ModuleWriterException.cs │ │ │ │ ├── NativeModuleWriter.cs │ │ │ │ ├── NetResources.cs │ │ │ │ ├── NormalMetaData.cs │ │ │ │ ├── PEHeaders.cs │ │ │ │ ├── PESection.cs │ │ │ │ ├── PreserveTokensMetaData.cs │ │ │ │ ├── RelocDirectory.cs │ │ │ │ ├── SectionSizes.cs │ │ │ │ ├── SignatureWriter.cs │ │ │ │ ├── StartupStub.cs │ │ │ │ ├── StringsHeap.cs │ │ │ │ ├── StrongNameSignature.cs │ │ │ │ ├── TablesHeap.cs │ │ │ │ ├── USHeap.cs │ │ │ │ ├── UniqueChunkList.cs │ │ │ │ └── Win32ResourcesChunk.cs │ │ │ ├── ExtensionAttribute.cs │ │ │ ├── IO │ │ │ ├── BinaryReaderStream.cs │ │ │ ├── FileOffset.cs │ │ │ ├── FileSection.cs │ │ │ ├── IBinaryReader.cs │ │ │ ├── IFileSection.cs │ │ │ ├── IImageStream.cs │ │ │ ├── IImageStreamCreator.cs │ │ │ ├── IOExtensions.cs │ │ │ ├── MemoryImageStream.cs │ │ │ ├── MemoryMappedFileStreamCreator.cs │ │ │ ├── MemoryStreamCreator.cs │ │ │ ├── UnmanagedMemoryImageStream.cs │ │ │ └── UnmanagedMemoryStreamCreator.cs │ │ │ ├── PE │ │ │ ├── Characteristics.cs │ │ │ ├── DllCharacteristics.cs │ │ │ ├── IImageOptionalHeader.cs │ │ │ ├── IPEImage.cs │ │ │ ├── IPEType.cs │ │ │ ├── ImageDataDirectory.cs │ │ │ ├── ImageDosHeader.cs │ │ │ ├── ImageFileHeader.cs │ │ │ ├── ImageNTHeaders.cs │ │ │ ├── ImageOptionalHeader32.cs │ │ │ ├── ImageOptionalHeader64.cs │ │ │ ├── ImageSectionHeader.cs │ │ │ ├── Machine.cs │ │ │ ├── PEExtensions.cs │ │ │ ├── PEImage.cs │ │ │ ├── PEInfo.cs │ │ │ ├── RVA.cs │ │ │ └── Subsystem.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Utils │ │ │ ├── Extensions.cs │ │ │ ├── ILazyList.cs │ │ │ ├── LazyList.cs │ │ │ ├── MFunc.cs │ │ │ ├── SimpleLazyList.cs │ │ │ └── UserValue.cs │ │ │ ├── W32Resources │ │ │ ├── ResourceData.cs │ │ │ ├── ResourceDirectory.cs │ │ │ ├── ResourceDirectoryEntry.cs │ │ │ ├── ResourceName.cs │ │ │ └── Win32Resources.cs │ │ │ └── dnlib.csproj │ │ ├── ICSharpCode.NRefactory │ │ ├── Ast │ │ │ ├── AbstractNode.cs │ │ │ ├── Enums.cs │ │ │ ├── General │ │ │ │ ├── BlockStatement.cs │ │ │ │ ├── CompilationUnit.cs │ │ │ │ ├── Expression.cs │ │ │ │ ├── LocalVariableDeclaration.cs │ │ │ │ ├── PrimitiveExpression.cs │ │ │ │ └── Statement.cs │ │ │ ├── Generated.cs │ │ │ ├── INode.cs │ │ │ ├── INullable.cs │ │ │ └── TypeReference.cs │ │ ├── AstBuilder │ │ │ ├── ExpressionBuilder.cs │ │ │ └── StatementBuilder.cs │ │ ├── EnvironmentInformationProvider.cs │ │ ├── Extensions │ │ │ ├── StringExtensions.cs │ │ │ └── XmlConvertExtensions.cs │ │ ├── IAstVisitor.cs │ │ ├── ICSharpCode.NRefactory.csproj │ │ ├── ICSharpCode.NRefactory.csproj.vspscc │ │ ├── Lexer │ │ │ ├── AbstractLexer.cs │ │ │ ├── CSharp │ │ │ │ ├── ConditionalCompilation.cs │ │ │ │ ├── KeywordList.txt │ │ │ │ ├── Keywords.cs │ │ │ │ ├── Lexer.cs │ │ │ │ └── Tokens.cs │ │ │ ├── ILexer.cs │ │ │ ├── LATextReader.cs │ │ │ ├── LexerMemento.cs │ │ │ ├── LookupTable.cs │ │ │ ├── SavepointEventArgs.cs │ │ │ ├── Special │ │ │ │ ├── BlankLine.cs │ │ │ │ ├── Comment.cs │ │ │ │ ├── CommentType.cs │ │ │ │ ├── ISpecial.cs │ │ │ │ ├── PreProcessingDirective.cs │ │ │ │ ├── SpecialTracker.cs │ │ │ │ └── TagComment.cs │ │ │ ├── Token.cs │ │ │ └── VBNet │ │ │ │ ├── Block.cs │ │ │ │ ├── ExpressionFinder.atg │ │ │ │ ├── ExpressionFinder.cs │ │ │ │ ├── ExpressionFinderState.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── KeywordList.txt │ │ │ │ ├── Keywords.cs │ │ │ │ ├── Lexer.cs │ │ │ │ ├── Parser.cs │ │ │ │ ├── PushParser.frame │ │ │ │ ├── Tokens.cs │ │ │ │ ├── VBLexerMemento.cs │ │ │ │ └── XmlModeInfo.cs │ │ ├── Location.cs │ │ ├── OperatorPrecedence.cs │ │ ├── Parser │ │ │ ├── AbstractParser.cs │ │ │ ├── CSharp │ │ │ │ ├── CSharpParser.cs │ │ │ │ ├── Parser.cs │ │ │ │ └── cs.ATG │ │ │ ├── Errors.cs │ │ │ ├── Frames │ │ │ │ ├── Parser.frame │ │ │ │ └── Scanner.frame │ │ │ ├── IParser.cs │ │ │ ├── ModifierList.cs │ │ │ ├── VBNet │ │ │ │ ├── ParamModifierList.cs │ │ │ │ ├── Parser.cs │ │ │ │ ├── VBNET.ATG │ │ │ │ └── VBNetParser.cs │ │ │ ├── gen.bat │ │ │ └── gen.sh │ │ ├── ParserFactory.cs │ │ ├── PrettyPrinter │ │ │ ├── AbstractOutputFormatter.cs │ │ │ ├── AbstractPrettyPrintOptions.cs │ │ │ ├── CSharp │ │ │ │ ├── CSharpOutputVisitor.cs │ │ │ │ ├── OutputFormatter.cs │ │ │ │ └── PrettyPrintOptions.cs │ │ │ ├── IOutputAstVisitor.cs │ │ │ ├── SpecialNodesInserter.cs │ │ │ └── VBNet │ │ │ │ ├── VBNetOutputFormatter.cs │ │ │ │ ├── VBNetOutputVisitor.cs │ │ │ │ └── VBNetPrettyPrintOptions.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── SnippetParser.cs │ │ └── Visitors │ │ │ ├── AbstractASTVisitor.cs │ │ │ ├── AbstractAstTransformer.cs │ │ │ ├── CSharpConstructsConvertVisitor.cs │ │ │ ├── CodeDOMOutputVisitor.cs │ │ │ ├── CodeDOMVerboseOutputGenerator.cs │ │ │ ├── ConvertVisitorBase.cs │ │ │ ├── LookupTableVisitor.cs │ │ │ ├── NodeTrackingAstVisitor.cs │ │ │ ├── NotImplementedAstVisitor.cs │ │ │ ├── PrefixFieldsVisitor.cs │ │ │ ├── RenameIdentifierVisitor.cs │ │ │ ├── SetParentVisitor.cs │ │ │ ├── SetRegionInclusionVisitor.cs │ │ │ ├── ToCSharpConvertVisitor.cs │ │ │ ├── ToVBNetConvertVisitor.cs │ │ │ ├── ToVBNetRenameConflictingVariables.cs │ │ │ └── VBNetConstructsConvertVisitor.cs │ │ ├── ICSharpCode.SharpDevelop.Dom │ │ ├── Ambience.cs │ │ ├── BusyManager.cs │ │ ├── CSharp │ │ │ ├── CSharpAmbience.cs │ │ │ ├── CSharpExpressionContext.cs │ │ │ ├── ExpressionFinder.cs │ │ │ ├── OverloadResolution.cs │ │ │ └── TypeInference.cs │ │ ├── CecilReader.cs │ │ ├── ClassFinder.cs │ │ ├── CtrlSpaceResolveHelper.cs │ │ ├── DiffUtility.cs │ │ ├── DomCache.cs │ │ ├── EasyCodeDom.cs │ │ ├── ExpressionContext.cs │ │ ├── ExtensionMethods.cs │ │ ├── FilePosition.cs │ │ ├── FileUtility.Minimal.cs │ │ ├── FoldingRegion.cs │ │ ├── FusionNative.cs │ │ ├── GacInterop.cs │ │ ├── HostCallback.cs │ │ ├── ICSharpCode.SharpDevelop.Dom.csproj │ │ ├── ICSharpCode.SharpDevelop.Dom.csproj.vspscc │ │ ├── IComment.cs │ │ ├── IExpressionFinder.cs │ │ ├── IResolver.cs │ │ ├── Implementations │ │ │ ├── AbstractEntity.cs │ │ │ ├── AbstractMember.cs │ │ │ ├── AbstractReturnType.cs │ │ │ ├── AnonymousMethodReturnType.cs │ │ │ ├── ArrayReturnType.cs │ │ │ ├── AttributeReturnType.cs │ │ │ ├── BoundTypeParameter.cs │ │ │ ├── CombinedReturnType.cs │ │ │ ├── CompoundClass.cs │ │ │ ├── ConstructedReturnType.cs │ │ │ ├── DecoratingReturnType.cs │ │ │ ├── DefaultAttribute.cs │ │ │ ├── DefaultClass.cs │ │ │ ├── DefaultComment.cs │ │ │ ├── DefaultCompilationUnit.cs │ │ │ ├── DefaultEvent.cs │ │ │ ├── DefaultField.cs │ │ │ ├── DefaultMethod.cs │ │ │ ├── DefaultParameter.cs │ │ │ ├── DefaultProperty.cs │ │ │ ├── DefaultReturnType.cs │ │ │ ├── DefaultTypeParameter.cs │ │ │ ├── DefaultUsing.cs │ │ │ ├── DefaultUsingScope.cs │ │ │ ├── DynamicReturnType.cs │ │ │ ├── ElementReturnType.cs │ │ │ ├── GenericReturnType.cs │ │ │ ├── GetClassReturnType.cs │ │ │ ├── MethodGroupReturnType.cs │ │ │ ├── NullReturnType.cs │ │ │ ├── PointerReturnType.cs │ │ │ ├── ProxyReturnType.cs │ │ │ ├── ReferenceReturnType.cs │ │ │ ├── SearchClassReturnType.cs │ │ │ ├── SystemTypes.cs │ │ │ └── UnknownReturnType.cs │ │ ├── Interfaces │ │ │ ├── ClassType.cs │ │ │ ├── ExplicitInterfaceImplementation.cs │ │ │ ├── IAttribute.cs │ │ │ ├── IClass.cs │ │ │ ├── ICompilationUnit.cs │ │ │ ├── ICompletionEntry.cs │ │ │ ├── IDomProgressMonitor.cs │ │ │ ├── IEntity.cs │ │ │ ├── IEvent.cs │ │ │ ├── IField.cs │ │ │ ├── IFreezable.cs │ │ │ ├── IMember.cs │ │ │ ├── IMethod.cs │ │ │ ├── IParameter.cs │ │ │ ├── IProperty.cs │ │ │ ├── IReturnType.cs │ │ │ ├── ITypeParameter.cs │ │ │ ├── IUsing.cs │ │ │ ├── IUsingScope.cs │ │ │ ├── ModifierEnum.cs │ │ │ ├── ParameterModifiers.cs │ │ │ └── Region.cs │ │ ├── LanguageProperties.cs │ │ ├── LazyList.cs │ │ ├── LoggingService.cs │ │ ├── MemberLookupHelper.cs │ │ ├── NRefactoryResolver │ │ │ ├── CSharpToVBNetConvertVisitor.cs │ │ │ ├── CodeSnippetConverter.cs │ │ │ ├── InferredReturnType.cs │ │ │ ├── LambdaParameterReturnType.cs │ │ │ ├── LambdaReturnType.cs │ │ │ ├── NRefactoryASTConvertVisitor.cs │ │ │ ├── NRefactoryInformationProvider.cs │ │ │ ├── NRefactoryResolver.cs │ │ │ ├── ResolveVisitor.cs │ │ │ ├── TypeVisitor.cs │ │ │ └── VBNetToCSharpConvertVisitor.cs │ │ ├── ParameterListComparer.cs │ │ ├── ProjectContent │ │ │ ├── DefaultProjectContent.cs │ │ │ ├── DomAssemblyName.cs │ │ │ ├── IProjectContent.cs │ │ │ ├── ParseInformation.cs │ │ │ ├── ProjectContentRegistry.cs │ │ │ └── ReflectionProjectContent.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReadOnlyDictionary.cs │ │ ├── Refactoring │ │ │ ├── CSharpCodeGenerator.cs │ │ │ ├── CodeGenerator.cs │ │ │ ├── CodeGeneratorOptions.cs │ │ │ ├── IRefactoringDocument.cs │ │ │ ├── NRefactoryCodeGenerator.cs │ │ │ ├── NRefactoryRefactoringProvider.cs │ │ │ ├── RefactoringProvider.cs │ │ │ ├── TextFinder.cs │ │ │ └── VBNetCodeGenerator.cs │ │ ├── ReflectionLayer │ │ │ ├── DomPersistence.cs │ │ │ ├── ReflectionClass.cs │ │ │ ├── ReflectionEvent.cs │ │ │ ├── ReflectionField.cs │ │ │ ├── ReflectionLoader.cs │ │ │ ├── ReflectionMethod.cs │ │ │ ├── ReflectionParameter.cs │ │ │ ├── ReflectionProperty.cs │ │ │ ├── ReflectionReturnType.cs │ │ │ └── ReflectionTypeNameSyntaxError.cs │ │ ├── ResolveResult.cs │ │ ├── SignatureComparer.cs │ │ ├── Tag.cs │ │ ├── VBNet │ │ │ ├── ExpressionFinder.cs │ │ │ ├── IVBNetOptionProvider.cs │ │ │ ├── VBNetAmbience.cs │ │ │ ├── VBNetCompilationUnit.cs │ │ │ └── VBNetExpressionFinder.cs │ │ └── XmlDoc.cs │ │ ├── ICSharpCode.TextEditor │ │ ├── Actions │ │ │ ├── BookmarkActions.cs │ │ │ ├── CaretActions.cs │ │ │ ├── ClipBoardActions.cs │ │ │ ├── FoldActions.cs │ │ │ ├── FormatActions.cs │ │ │ ├── HomeEndActions.cs │ │ │ ├── IEditAction.cs │ │ │ ├── MiscActions.cs │ │ │ └── SelectionActions.cs │ │ ├── Document │ │ │ ├── AbstractSegment.cs │ │ │ ├── BookmarkManager │ │ │ │ ├── Bookmark.cs │ │ │ │ ├── BookmarkEventHandler.cs │ │ │ │ ├── BookmarkManager.cs │ │ │ │ └── BookmarkManagerMemento.cs │ │ │ ├── DefaultDocument.cs │ │ │ ├── DefaultTextEditorProperties.cs │ │ │ ├── DocumentEventArgs.cs │ │ │ ├── DocumentFactory.cs │ │ │ ├── FoldingStrategy │ │ │ │ ├── FoldMarker.cs │ │ │ │ ├── FoldingManager.cs │ │ │ │ ├── IFoldingStrategy.cs │ │ │ │ └── IndentFoldingStrategy.cs │ │ │ ├── FormattingStrategy │ │ │ │ ├── DefaultFormattingStrategy.cs │ │ │ │ └── IFormattingStrategy.cs │ │ │ ├── HighlightingStrategy │ │ │ │ ├── DefaultHighlightingStrategy.cs │ │ │ │ ├── FontContainer.cs │ │ │ │ ├── HighlightBackground.cs │ │ │ │ ├── HighlightColor.cs │ │ │ │ ├── HighlightInfo.cs │ │ │ │ ├── HighlightRuleSet.cs │ │ │ │ ├── HighlightingColorNotFoundException.cs │ │ │ │ ├── HighlightingDefinitionInvalidException.cs │ │ │ │ ├── HighlightingDefinitionParser.cs │ │ │ │ ├── HighlightingManager.cs │ │ │ │ ├── HighlightingStrategyFactory.cs │ │ │ │ ├── IHighlightingStrategy.cs │ │ │ │ ├── NextMarker.cs │ │ │ │ ├── PrevMarker.cs │ │ │ │ ├── Span.cs │ │ │ │ ├── SpanStack.cs │ │ │ │ ├── SyntaxModes │ │ │ │ │ ├── FileSyntaxModeProvider.cs │ │ │ │ │ ├── ISyntaxModeFileProvider.cs │ │ │ │ │ ├── ResourceSyntaxModeProvider.cs │ │ │ │ │ └── SyntaxMode.cs │ │ │ │ └── TextWord.cs │ │ │ ├── IDocument.cs │ │ │ ├── ISegment.cs │ │ │ ├── ITextEditorProperties.cs │ │ │ ├── LineManager │ │ │ │ ├── DeferredEventList.cs │ │ │ │ ├── LineManager.cs │ │ │ │ ├── LineManagerEventArgs.cs │ │ │ │ ├── LineSegment.cs │ │ │ │ └── LineSegmentTree.cs │ │ │ ├── MarkerStrategy │ │ │ │ ├── MarkerStrategy.cs │ │ │ │ └── TextMarker.cs │ │ │ ├── Selection │ │ │ │ ├── ColumnRange.cs │ │ │ │ ├── DefaultSelection.cs │ │ │ │ ├── ISelection.cs │ │ │ │ └── SelectionManager.cs │ │ │ ├── TextAnchor.cs │ │ │ ├── TextBufferStrategy │ │ │ │ ├── GapTextBufferStrategy.cs │ │ │ │ ├── ITextBufferStrategy.cs │ │ │ │ └── StringTextBufferStrategy.cs │ │ │ ├── TextLocation.cs │ │ │ └── TextUtilities.cs │ │ ├── Gui │ │ │ ├── AbstractMargin.cs │ │ │ ├── BracketHighlighter.cs │ │ │ ├── BrushRegistry.cs │ │ │ ├── Caret.cs │ │ │ ├── CompletionWindow │ │ │ │ ├── AbstractCompletionWindow.cs │ │ │ │ ├── CodeCompletionListView.cs │ │ │ │ ├── CodeCompletionWindow.cs │ │ │ │ ├── DeclarationViewWindow.cs │ │ │ │ ├── ICompletionData.cs │ │ │ │ └── ICompletionDataProvider.cs │ │ │ ├── DrawableLine.cs │ │ │ ├── FoldMargin.cs │ │ │ ├── GutterMargin.cs │ │ │ ├── HRuler.cs │ │ │ ├── IconBarMargin.cs │ │ │ ├── Ime.cs │ │ │ ├── InsightWindow │ │ │ │ ├── IInsightDataProvider.cs │ │ │ │ └── InsightWindow.cs │ │ │ ├── TextArea.cs │ │ │ ├── TextAreaClipboardHandler.cs │ │ │ ├── TextAreaControl.cs │ │ │ ├── TextAreaDragDropHandler.cs │ │ │ ├── TextAreaMouseHandler.cs │ │ │ ├── TextAreaUpdate.cs │ │ │ ├── TextEditorControl.cs │ │ │ ├── TextEditorControlBase.cs │ │ │ ├── TextView.cs │ │ │ └── ToolTipRequestEventArgs.cs │ │ ├── ICSharpCode.TextEditor.csproj │ │ ├── ICSharpCode.TextEditor.csproj.vspscc │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── ASPX.xshd │ │ │ ├── BAT-Mode.xshd │ │ │ ├── Boo.xshd │ │ │ ├── CPP-Mode.xshd │ │ │ ├── CSharp-Mode.xshd │ │ │ ├── Coco-Mode.xshd │ │ │ ├── HTML-Mode.xshd │ │ │ ├── Java-Mode.xshd │ │ │ ├── JavaScript-Mode.xshd │ │ │ ├── Mode.xsd │ │ │ ├── PHP-Mode.xshd │ │ │ ├── Patch-Mode.xshd │ │ │ ├── RightArrow.cur │ │ │ ├── SyntaxModes.xml │ │ │ ├── Tex-Mode.xshd │ │ │ ├── TextEditorControl.bmp │ │ │ ├── VBNET-Mode.xshd │ │ │ └── XML-Mode.xshd │ │ ├── Undo │ │ │ ├── IUndoableOperation.cs │ │ │ ├── UndoQueue.cs │ │ │ ├── UndoStack.cs │ │ │ ├── UndoableDelete.cs │ │ │ ├── UndoableInsert.cs │ │ │ └── UndoableReplace.cs │ │ └── Util │ │ │ ├── AugmentableRedBlackTree.cs │ │ │ ├── CheckedList.cs │ │ │ ├── FileReader.cs │ │ │ ├── LoggingService.cs │ │ │ ├── LookupTable.cs │ │ │ ├── MouseWheelHandler.cs │ │ │ ├── RedBlackTreeIterator.cs │ │ │ ├── RtfWriter.cs │ │ │ ├── TextUtility.cs │ │ │ ├── TipPainter.cs │ │ │ ├── TipPainterTools.cs │ │ │ ├── TipSection.cs │ │ │ ├── TipSpacer.cs │ │ │ ├── TipSplitter.cs │ │ │ ├── TipText.cs │ │ │ └── WeakCollection.cs │ │ ├── Mono.Cecil.Mdb │ │ ├── Mono.Cecil.Mdb │ │ │ ├── MdbReader.cs │ │ │ └── MdbWriter.cs │ │ ├── Mono.CompilerServices.SymbolWriter │ │ │ ├── MonoSymbolFile.cs │ │ │ ├── MonoSymbolTable.cs │ │ │ ├── MonoSymbolWriter.cs │ │ │ └── SymbolWriterImpl.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Reflexil.Mono.Cecil.Mdb.csproj │ │ └── Reflexil.Mono.Cecil.Mdb.csproj.vspscc │ │ ├── Mono.Cecil.Pdb │ │ ├── Microsoft.Cci.Pdb │ │ │ ├── BitAccess.cs │ │ │ ├── BitSet.cs │ │ │ ├── CvInfo.cs │ │ │ ├── DataStream.cs │ │ │ ├── DbiDbgHdr.cs │ │ │ ├── DbiHeader.cs │ │ │ ├── DbiModuleInfo.cs │ │ │ ├── DbiSecCon.cs │ │ │ ├── IntHashTable.cs │ │ │ ├── Interfaces.cs │ │ │ ├── LICENSE │ │ │ ├── MsfDirectory.cs │ │ │ ├── PdbConstant.cs │ │ │ ├── PdbDebugException.cs │ │ │ ├── PdbException.cs │ │ │ ├── PdbFile.cs │ │ │ ├── PdbFileHeader.cs │ │ │ ├── PdbFunction.cs │ │ │ ├── PdbLine.cs │ │ │ ├── PdbLines.cs │ │ │ ├── PdbReader.cs │ │ │ ├── PdbScope.cs │ │ │ ├── PdbSlot.cs │ │ │ ├── PdbSource.cs │ │ │ ├── PdbTokenLine.cs │ │ │ └── SourceLocationProvider.cs │ │ ├── Mono.Cecil.Pdb │ │ │ ├── ISymUnmanagedDocumentWriter.cs │ │ │ ├── ISymUnmanagedWriter2.cs │ │ │ ├── ModuleMetadata.cs │ │ │ ├── PdbHelper.cs │ │ │ ├── PdbReader.cs │ │ │ ├── PdbWriter.cs │ │ │ ├── SymDocumentWriter.cs │ │ │ └── SymWriter.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Reflexil.Mono.Cecil.Pdb.csproj │ │ └── Reflexil.Mono.Cecil.Pdb.csproj.vspscc │ │ └── Mono.Cecil │ │ ├── Mono.Cecil.Cil │ │ ├── Code.cs │ │ ├── CodeReader.cs │ │ ├── CodeWriter.cs │ │ ├── Document.cs │ │ ├── ExceptionHandler.cs │ │ ├── ILProcessor.cs │ │ ├── Instruction.cs │ │ ├── MethodBody.cs │ │ ├── OpCode.cs │ │ ├── OpCodes.cs │ │ ├── SequencePoint.cs │ │ ├── Symbols.cs │ │ ├── VariableDefinition.cs │ │ └── VariableReference.cs │ │ ├── Mono.Cecil.Legacy │ │ ├── CustomAttribute.cs │ │ ├── EventDefinition.cs │ │ ├── FieldDefinition.cs │ │ ├── GenericContext.cs │ │ ├── IReflectionVisitable.cs │ │ ├── IReflectionVisitor.cs │ │ ├── ImageFormatException.cs │ │ ├── MarshalInfo.cs │ │ ├── MemberReference.cs │ │ ├── MetadataFormatException.cs │ │ ├── MethodDefinition.cs │ │ ├── ModuleDefinition.cs │ │ ├── MonoCecilReflexilMarker.cs │ │ ├── PInvokeInfo.cs │ │ ├── ParameterDefinition.cs │ │ ├── ParameterReference.cs │ │ ├── PropertyDefinition.cs │ │ ├── ReflectionException.cs │ │ ├── SecurityDeclaration.cs │ │ ├── TypeDefinition.cs │ │ └── TypeReference.cs │ │ ├── Mono.Cecil.Metadata │ │ ├── BlobHeap.cs │ │ ├── Buffers.cs │ │ ├── CodedIndex.cs │ │ ├── ElementType.cs │ │ ├── GuidHeap.cs │ │ ├── Heap.cs │ │ ├── MetadataToken.cs │ │ ├── Row.cs │ │ ├── StringHeap.cs │ │ ├── TableHeap.cs │ │ ├── TokenType.cs │ │ ├── UserStringHeap.cs │ │ └── Utilities.cs │ │ ├── Mono.Cecil.PE │ │ ├── BinaryStreamReader.cs │ │ ├── BinaryStreamWriter.cs │ │ ├── ByteBuffer.cs │ │ ├── ByteBufferEqualityComparer.cs │ │ ├── DataDirectory.cs │ │ ├── Image.cs │ │ ├── ImageReader.cs │ │ ├── ImageWriter.cs │ │ ├── Section.cs │ │ └── TextMap.cs │ │ ├── Mono.Cecil │ │ ├── ArrayType.cs │ │ ├── AssemblyDefinition.cs │ │ ├── AssemblyFlags.cs │ │ ├── AssemblyHashAlgorithm.cs │ │ ├── AssemblyLinkedResource.cs │ │ ├── AssemblyNameDefinition.cs │ │ ├── AssemblyNameReference.cs │ │ ├── AssemblyReader.cs │ │ ├── AssemblyWriter.cs │ │ ├── BaseAssemblyResolver.cs │ │ ├── CallSite.cs │ │ ├── CustomAttribute.cs │ │ ├── DefaultAssemblyResolver.cs │ │ ├── EmbeddedResource.cs │ │ ├── EventAttributes.cs │ │ ├── EventDefinition.cs │ │ ├── EventReference.cs │ │ ├── ExportedType.cs │ │ ├── FieldAttributes.cs │ │ ├── FieldDefinition.cs │ │ ├── FieldReference.cs │ │ ├── FileAttributes.cs │ │ ├── FunctionPointerType.cs │ │ ├── GenericInstanceMethod.cs │ │ ├── GenericInstanceType.cs │ │ ├── GenericParameter.cs │ │ ├── GenericParameterAttributes.cs │ │ ├── IConstantProvider.cs │ │ ├── ICustomAttributeProvider.cs │ │ ├── IGenericInstance.cs │ │ ├── IGenericParameterProvider.cs │ │ ├── IMarshalInfoProvider.cs │ │ ├── IMemberDefinition.cs │ │ ├── IMetadataScope.cs │ │ ├── IMetadataTokenProvider.cs │ │ ├── IMethodSignature.cs │ │ ├── Import.cs │ │ ├── LinkedResource.cs │ │ ├── ManifestResourceAttributes.cs │ │ ├── MarshalInfo.cs │ │ ├── MemberDefinitionCollection.cs │ │ ├── MemberReference.cs │ │ ├── MetadataResolver.cs │ │ ├── MetadataSystem.cs │ │ ├── MethodAttributes.cs │ │ ├── MethodCallingConvention.cs │ │ ├── MethodDefinition.cs │ │ ├── MethodImplAttributes.cs │ │ ├── MethodReference.cs │ │ ├── MethodReturnType.cs │ │ ├── MethodSemanticsAttributes.cs │ │ ├── MethodSpecification.cs │ │ ├── Modifiers.cs │ │ ├── ModuleDefinition.cs │ │ ├── ModuleKind.cs │ │ ├── ModuleReference.cs │ │ ├── NativeType.cs │ │ ├── PInvokeAttributes.cs │ │ ├── PInvokeInfo.cs │ │ ├── ParameterAttributes.cs │ │ ├── ParameterDefinition.cs │ │ ├── ParameterDefinitionCollection.cs │ │ ├── ParameterReference.cs │ │ ├── PinnedType.cs │ │ ├── PointerType.cs │ │ ├── PropertyAttributes.cs │ │ ├── PropertyDefinition.cs │ │ ├── PropertyReference.cs │ │ ├── ReferenceType.cs │ │ ├── Resource.cs │ │ ├── SecurityDeclaration.cs │ │ ├── SentinelType.cs │ │ ├── TargetRuntime.cs │ │ ├── TypeAttributes.cs │ │ ├── TypeDefinition.cs │ │ ├── TypeDefinitionCollection.cs │ │ ├── TypeParser.cs │ │ ├── TypeReference.cs │ │ ├── TypeSpecification.cs │ │ ├── TypeSystem.cs │ │ └── VariantType.cs │ │ ├── Mono.Collections.Generic │ │ ├── Collection.cs │ │ └── ReadOnlyCollection.cs │ │ ├── Mono.Security.Cryptography │ │ ├── CryptoConvert.cs │ │ └── CryptoService.cs │ │ ├── Mono │ │ ├── Actions.cs │ │ ├── Empty.cs │ │ └── Funcs.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Reflexil.Mono.Cecil.csproj │ │ ├── Reflexil.Mono.Cecil.csproj.vspscc │ │ └── System.Runtime.CompilerServices │ │ └── ExtensionAttribute.cs │ ├── Licenses │ ├── Reflexil │ │ ├── GPL-LICENSE.txt │ │ ├── LGPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ └── triple.licensing.txt │ └── ThirdParty │ │ ├── Be.HexEditor │ │ └── LICENSE.Be.HexEditor.txt │ │ ├── De4dot │ │ ├── COPYING │ │ ├── LICENSE.ICSharpCode.SharpZipLib.txt │ │ ├── LICENSE.QuickLZ.txt │ │ ├── LICENSE.de4dot.txt │ │ ├── LICENSE.dnlib.txt │ │ ├── LICENSE.lzmat.txt │ │ └── LICENSE.randomc.txt │ │ ├── ICSharpCode.NRefactory │ │ └── LICENSE.ICSharpCode.NRefactory.txt │ │ ├── ICSharpCode.SharpDevelop.Dom │ │ ├── LGPL.txt │ │ └── README.txt │ │ ├── ICSharpCode.TextEditor │ │ ├── LGPL.txt │ │ └── README.txt │ │ └── Mono.Cecil │ │ └── LICENSE.Mono.Cecil.txt │ ├── Plugins │ ├── BasePackage.cs │ ├── BasePlugin.cs │ ├── Cecil.Decompiler.Gui.Services │ │ ├── Cecil.Decompiler.Gui.Services.csproj │ │ ├── Cecil.Decompiler.Gui.Services.csproj.vspscc │ │ ├── Decompiler.Gui.Services │ │ │ ├── ActionNames.cs │ │ │ ├── AssemblyLoadedEventArgs.cs │ │ │ ├── AssemblyLoadedEventHandler.cs │ │ │ ├── AssemblyUnloadedEventArgs.cs │ │ │ ├── AssemblyUnloadedEventHandler.cs │ │ │ ├── BarNames.cs │ │ │ ├── IAction.cs │ │ │ ├── IActionCollection.cs │ │ │ ├── IActionManager.cs │ │ │ ├── IActionNameContainer.cs │ │ │ ├── IAssemblyBrowser.cs │ │ │ ├── IAssemblyManager.cs │ │ │ ├── IBar.cs │ │ │ ├── IBarButton.cs │ │ │ ├── IBarCollection.cs │ │ │ ├── IBarControl.cs │ │ │ ├── IBarItem.cs │ │ │ ├── IBarItemCollection.cs │ │ │ ├── IBarManager.cs │ │ │ ├── IBarMenu.cs │ │ │ ├── IBarSeparator.cs │ │ │ ├── IPlugin.cs │ │ │ ├── IService.cs │ │ │ ├── IWindow.cs │ │ │ ├── IWindowCollection.cs │ │ │ ├── IWindowManager.cs │ │ │ └── WindowNames.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── GenericFactory.cs │ ├── IAssemblyContext.cs │ ├── IPackage.cs │ ├── IPlugin.cs │ ├── PluginFactory.cs │ ├── Reflexil.CecilStudio │ │ ├── Plugins │ │ │ ├── CecilStudioAssemblyContext.cs │ │ │ ├── CecilStudioAssemblyWrapper.cs │ │ │ ├── CecilStudioPackage.cs │ │ │ ├── CecilStudioPlugin.cs │ │ │ └── UIContext.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Reflexil.CecilStudio.csproj │ │ └── Reflexil.CecilStudio.csproj.vspscc │ └── Reflexil.Reflector │ │ ├── Plugins │ │ ├── ReflectorAssemblyContext.cs │ │ ├── ReflectorAssemblyWrapper.cs │ │ ├── ReflectorHelper.cs │ │ ├── ReflectorPackage.cs │ │ ├── ReflectorPlugin.cs │ │ └── UIContext.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Reflexil.Reflector.csproj │ │ └── Reflexil.Reflector.csproj.vspscc │ ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── Mono.Cecil.Cil.ExceptionHandler.datasource │ │ ├── Mono.Cecil.Cil.Instruction.datasource │ │ ├── Mono.Cecil.Cil.OpCode.datasource │ │ ├── Mono.Cecil.Cil.OpCodes.datasource │ │ ├── Mono.Cecil.Cil.VariableDefinition.datasource │ │ ├── Mono.Cecil.ParameterDefinition.datasource │ │ ├── Reflexil.Verifier.VerificationError.datasource │ │ └── System.CodeDom.Compiler.CompilerError.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── SolutionVersion.cs │ ├── README.FIRST.txt │ ├── README.md │ ├── Reflexil.csproj │ ├── Reflexil.csproj.vspscc │ ├── Reflexil.jmconfig │ ├── Reflexil.sln │ ├── Resources │ ├── bar.png │ ├── browser.png │ ├── copyhs.png │ ├── cuths.png │ ├── findhs.png │ ├── findnexths.png │ ├── opcodes.txt │ ├── openhs.png │ ├── pastehs.png │ ├── reflexil.png │ └── savehs.png │ ├── Todo │ ├── Utils │ ├── AssemblyHelper.cs │ ├── ByteHelper.cs │ ├── CecilHelper.cs │ ├── De4dotHelper.cs │ ├── DeleteHelper.cs │ ├── EBarImages.cs │ ├── EBrowserImages.cs │ ├── EInjectType.cs │ ├── ENumericBase.cs │ ├── FrameworkVersionChecker.cs │ ├── InjectHelper.cs │ ├── PEVerifyUtility.cs │ ├── ReflexilAssemblyResolver.cs │ ├── RenameHelper.cs │ ├── SdkUtility.cs │ └── StrongNameUtility.cs │ ├── Verifier │ ├── AssemblyVerification.cs │ ├── IntermediateLanguageVerificationError.cs │ ├── MetadataVerificationError.cs │ ├── VerificationError.cs │ ├── VerificationErrorCollectionCreator.cs │ └── VerificationException.cs │ ├── Wrappers │ ├── IAssemblyWrapper.cs │ ├── IWrapper.cs │ ├── InstructionWrapper.cs │ ├── NamespaceWrapper.cs │ ├── OperandDisplayHelper.cs │ ├── ParameterWrapper.cs │ ├── PropertyWrapper.cs │ └── VariableWrapper.cs │ ├── app.config │ └── credits.txt └── ThirdParty ├── Be.HexEditor └── LICENSE.Be.HexEditor.txt ├── ICSharpCode.NRefactory └── LICENSE.ICSharpCode.NRefactory.txt ├── ICSharpCode.SharpDevelop.Dom ├── LGPL.txt └── README.txt ├── ICSharpCode.TextEditor ├── LGPL.txt └── README.txt └── Mono.Cecil └── LICENSE.Mono.Cecil.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/COPYING.txt -------------------------------------------------------------------------------- /CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/ContextMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/ContextMenuItem.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot.JustDecompile.Module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot.JustDecompile.Module.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot.JustDecompile.Module.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot.JustDecompile.Module.csproj.vspscc -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/.gitignore -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/.gitmodules -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/AssemblyData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/AssemblyData.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/AssemblyResolver.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/AssemblyServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/AssemblyServer.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/AssemblyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/AssemblyService.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/EmuStringDecrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/EmuStringDecrypter.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/GenericService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/GenericService.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/IAssemblyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/IAssemblyService.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/IGenericService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/IGenericService.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/IStringDecrypter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/IStringDecrypter.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/IUserGenericService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/IUserGenericService.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/SimpleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/SimpleData.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyData/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyData/Utils.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR20-x64/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR20-x64/App.config -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR20-x64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR20-x64/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR20/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR20/App.config -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR20/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR20/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR40-x64/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR40-x64/App.config -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR40-x64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR40-x64/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR40/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR40/App.config -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR40/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer-CLR40/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer-x64/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer-x64/App.config -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer-x64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer-x64/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer/App.config -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer/AssemblyServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer/AssemblyServer.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/AssemblyServer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/AssemblyServer/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/COPYING -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/LICENSE.ICSharpCode.SharpZipLib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/LICENSE.ICSharpCode.SharpZipLib.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/LICENSE.QuickLZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/LICENSE.QuickLZ.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/LICENSE.de4dot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/LICENSE.de4dot.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/LICENSE.dnlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/LICENSE.dnlib.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/LICENSE.lzmat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/LICENSE.lzmat.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/LICENSE.randomc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/LICENSE.randomc.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/README.md -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/Test.Rename.Dll/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/Test.Rename.Dll/Tests.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/Test.Rename/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/Test.Rename/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/Test.Rename/Test.Rename.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/Test.Rename/Test.Rename.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot-x64/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot-x64/App.config -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot-x64/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot-x64/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot-x64/de4dot-x64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot-x64/de4dot-x64.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/BaseBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/BaseBlock.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/Block.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/Blocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/Blocks.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/BlocksSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/BlocksSorter.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/CodeGenerator.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/DeadBlocksRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/DeadBlocksRemover.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/DotNetUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/DotNetUtils.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/DumpedMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/DumpedMethod.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/DumpedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/DumpedMethods.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/FilterHandlerBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/FilterHandlerBlock.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/ForwardScanOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/ForwardScanOrder.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/HandlerBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/HandlerBlock.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/Instr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/Instr.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/MemberDefDict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/MemberDefDict.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/MethodBlocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/MethodBlocks.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/ScopeBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/ScopeBlock.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/StackTracePatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/StackTracePatcher.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/TryBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/TryBlock.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/TryHandlerBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/TryHandlerBlock.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/Utils.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/CflowUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/CflowUtils.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/Int32Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/Int32Value.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/Int64Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/Int64Value.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/Real8Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/Real8Value.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/StLdlocFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/StLdlocFixer.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/Value.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/ValueStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/cflow/ValueStack.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.blocks/de4dot.blocks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.blocks/de4dot.blocks.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/AssemblyModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/AssemblyModule.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/AssemblyResolver.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/DeobfuscatorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/DeobfuscatorContext.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/DumpedMethodsRestorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/DumpedMethodsRestorer.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/IDeobfuscatorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/IDeobfuscatorContext.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/IObfuscatedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/IObfuscatedFile.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/Logger.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/MethodPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/MethodPrinter.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/NameRegexes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/NameRegexes.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/ObfuscatedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/ObfuscatedFile.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/Option.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/PrintNewTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/PrintNewTokens.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/SharpZipLib/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/SharpZipLib/Main.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/StringInliner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/StringInliner.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/UserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/UserException.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/Utils.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/Win32Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/Win32Path.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/de4dot.code.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/de4dot.code.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/deobfuscators/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/deobfuscators/CRC32.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/deobfuscators/QuickLZ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/deobfuscators/QuickLZ.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/DerivedFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/DerivedFrom.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/ExistingNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/ExistingNames.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/INameChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/INameChecker.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/MemberInfos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/MemberInfos.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/NameCreators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/NameCreators.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/Renamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/Renamer.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/TypeInfo.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/TypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.code/renamer/TypeNames.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.cui/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.cui/CommandLineParser.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.cui/FilesDeobfuscator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.cui/FilesDeobfuscator.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.cui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.cui/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.cui/de4dot.cui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.cui/de4dot.cui.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot.sln -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot/App.config -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/de4dot/de4dot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/de4dot/de4dot.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/.gitignore -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/Examples/Example1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/Examples/Example1.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/Examples/Example2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/Examples/Example2.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/Examples/Example3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/Examples/Example3.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/Examples/Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/Examples/Examples.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/Examples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/Examples/Program.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/LICENSE.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/README.md -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/dnlib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/dnlib.sln -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/dnlib.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/dnlib.snk -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AccessChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AccessChecker.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AllTypesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AllTypesHelper.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AssemblyDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AssemblyDef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AssemblyHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AssemblyHash.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AssemblyNameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AssemblyNameInfo.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AssemblyRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AssemblyRef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/AssemblyResolver.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ClassLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ClassLayout.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Constant.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/CorLibTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/CorLibTypes.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/CustomAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/CustomAttribute.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/DeclSecurity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/DeclSecurity.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ElementType.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/Code.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/Code.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/Extensions.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/FlowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/FlowControl.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/Instruction.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/LocalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/LocalList.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/MethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/MethodBody.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/MethodUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/MethodUtils.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/OpCode.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/OpCodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/OpCodeType.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/OpCodes.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/OperandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Emit/OperandType.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/EventAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/EventAttributes.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/EventDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/EventDef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ExportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ExportedType.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Extensions.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FieldAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FieldAttributes.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FieldDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FieldDef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FieldMarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FieldMarshal.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FileAttributes.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FileDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FileDef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FullNameCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/FullNameCreator.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/GenericArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/GenericArguments.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/GenericParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/GenericParam.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ICodedToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ICodedToken.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ICorLibTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ICorLibTypes.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/IDecrypters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/IDecrypters.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ILogger.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/IResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/IResolver.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/IType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/IType.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ITypeDefFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ITypeDefFinder.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/IVariable.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ImplMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ImplMap.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Importer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Importer.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/InterfaceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/InterfaceImpl.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/BlobStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/BlobStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/CodedToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/CodedToken.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/ColumnInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/ColumnInfo.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/ColumnSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/ColumnSize.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/ComImageFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/ComImageFlags.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/DotNetFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/DotNetFile.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/DotNetStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/DotNetStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/ENCMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/ENCMetaData.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/GuidStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/GuidStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/HeapType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/HeapType.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/HotHeapStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/HotHeapStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/HotStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/HotStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/IMetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/IMetaData.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/IRowReaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/IRowReaders.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/MDStreamFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/MDStreamFlags.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/MDTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/MDTable.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/MetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/MetaData.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/RawTableRows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/RawTableRows.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/RidList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/RidList.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/StorageFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/StorageFlags.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/StreamHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/StreamHeader.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/StringsStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/StringsStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/Table.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/TableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/TableInfo.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/TablesStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/TablesStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/USStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MD/USStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MDToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MDToken.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ManifestResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ManifestResource.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MemberRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MemberRef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MethodAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MethodAttributes.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MethodDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MethodDef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MethodOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MethodOverride.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MethodSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/MethodSpec.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ModuleContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ModuleContext.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ModuleDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ModuleDef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ModuleDefMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ModuleDefMD.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ModuleKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ModuleKind.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ModuleRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ModuleRef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/NullResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/NullResolver.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ParamAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ParamAttributes.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ParamDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ParamDef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ParameterList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ParameterList.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/PropertyDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/PropertyDef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/PublicKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/PublicKey.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/PublicKeyBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/PublicKeyBase.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/PublicKeyToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/PublicKeyToken.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/RecursionCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/RecursionCounter.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ResolveException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/ResolveException.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Resolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Resolver.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Resource.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/SigComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/SigComparer.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/SignatureReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/SignatureReader.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/StandAloneSig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/StandAloneSig.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/StrongNameKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/StrongNameKey.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/StrongNameSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/StrongNameSigner.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeAttributes.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeDef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeDef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeDefFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeDefFinder.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeNameParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeNameParser.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeRef.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeSig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeSig.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/TypeSpec.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/UTF8String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/UTF8String.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Utils.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/VTableFixups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/VTableFixups.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/BlobHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/BlobHeap.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/ChunkList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/ChunkList.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/GuidHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/GuidHeap.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/HeapBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/HeapBase.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/HotHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/HotHeap.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/HotPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/HotPool.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/HotTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/HotTable.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/IChunk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/IChunk.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/IHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/IHeap.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/MDTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/MDTable.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/MetaData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/MetaData.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/PEHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/PEHeaders.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/PESection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/PESection.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/USHeap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/DotNet/Writer/USHeap.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/ExtensionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/ExtensionAttribute.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/BinaryReaderStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/BinaryReaderStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/FileOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/FileOffset.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/FileSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/FileSection.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/IBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/IBinaryReader.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/IFileSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/IFileSection.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/IImageStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/IImageStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/IImageStreamCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/IImageStreamCreator.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/IOExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/IOExtensions.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/MemoryImageStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/MemoryImageStream.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/MemoryStreamCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/IO/MemoryStreamCreator.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/Characteristics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/Characteristics.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/DllCharacteristics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/DllCharacteristics.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/IImageOptionalHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/IImageOptionalHeader.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/IPEImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/IPEImage.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/IPEType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/IPEType.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/ImageDataDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/ImageDataDirectory.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/ImageDosHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/ImageDosHeader.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/ImageFileHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/ImageFileHeader.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/ImageNTHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/ImageNTHeaders.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/ImageSectionHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/ImageSectionHeader.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/Machine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/Machine.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/PEExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/PEExtensions.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/PEImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/PEImage.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/PEInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/PEInfo.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/RVA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/RVA.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/Subsystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/PE/Subsystem.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/Threading/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/Threading/Extensions.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/Threading/Lock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/Threading/Lock.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/Extensions.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/ILazyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/ILazyList.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/LazyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/LazyList.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/MFunc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/MFunc.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/SimpleLazyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/SimpleLazyList.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/UserValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/Utils/UserValue.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dot/sources/dnlib/src/dnlib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dot/sources/dnlib/src/dnlib.csproj -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dotModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dotModule.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/De4dotWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/De4dotWrapper.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/DeobfuscateDialog/DeobfuscateDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/DeobfuscateDialog/DeobfuscateDialog.xaml -------------------------------------------------------------------------------- /De4dot.JustDecompile/DeobfuscateDialog/DeobfuscateDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/DeobfuscateDialog/DeobfuscateDialog.xaml.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/DeobfuscateDialog/DeobfuscateDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/DeobfuscateDialog/DeobfuscateDialogViewModel.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/DeobfuscateDialog/SelectedOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/DeobfuscateDialog/SelectedOptions.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/DeobfuscationProgressView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/DeobfuscationProgressView.xaml -------------------------------------------------------------------------------- /De4dot.JustDecompile/DeobfuscationProgressView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/DeobfuscationProgressView.xaml.cs -------------------------------------------------------------------------------- /De4dot.JustDecompile/LicenseAgreements/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/LicenseAgreements/COPYING -------------------------------------------------------------------------------- /De4dot.JustDecompile/LicenseAgreements/LICENSE.de4dot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/LicenseAgreements/LICENSE.de4dot.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/LicenseAgreements/ThirdParty/LICENSE.QuickLZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/LicenseAgreements/ThirdParty/LICENSE.QuickLZ.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/LicenseAgreements/ThirdParty/LICENSE.dnlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/LicenseAgreements/ThirdParty/LICENSE.dnlib.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/LicenseAgreements/ThirdParty/LICENSE.randomc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/LicenseAgreements/ThirdParty/LICENSE.randomc.txt -------------------------------------------------------------------------------- /De4dot.JustDecompile/PluginConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/PluginConfig.xml -------------------------------------------------------------------------------- /De4dot.JustDecompile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/De4dot.JustDecompile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FAQ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/FAQ.pdf -------------------------------------------------------------------------------- /JustDecompile.De4dotPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompile.De4dotPlugin.sln -------------------------------------------------------------------------------- /JustDecompile.ReflexilPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompile.ReflexilPlugin.sln -------------------------------------------------------------------------------- /JustDecompile.ReflexilPlugin.vssscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompile.ReflexilPlugin.vssscc -------------------------------------------------------------------------------- /JustDecompileApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompileApi.sln -------------------------------------------------------------------------------- /JustDecompilePowerTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompilePowerTools.sln -------------------------------------------------------------------------------- /JustDecompilePowerTools/JustDecompilePowerTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompilePowerTools/JustDecompilePowerTools.cs -------------------------------------------------------------------------------- /JustDecompilePowerTools/JustDecompilePowerTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompilePowerTools/JustDecompilePowerTools.csproj -------------------------------------------------------------------------------- /JustDecompilePowerTools/JustDecompilePowerTools.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompilePowerTools/JustDecompilePowerTools.csproj.vspscc -------------------------------------------------------------------------------- /JustDecompilePowerTools/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompilePowerTools/LICENSE.txt -------------------------------------------------------------------------------- /JustDecompilePowerTools/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompilePowerTools/MenuItem.cs -------------------------------------------------------------------------------- /JustDecompilePowerTools/PluginConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompilePowerTools/PluginConfig.xml -------------------------------------------------------------------------------- /JustDecompilePowerTools/ProgressWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompilePowerTools/ProgressWindow.cs -------------------------------------------------------------------------------- /JustDecompilePowerTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/JustDecompilePowerTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/README.md -------------------------------------------------------------------------------- /Reflexil.JustDecompile/Images/gray_close_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/Images/gray_close_button.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/JustDecompileCecilPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/JustDecompileCecilPlugin.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/JustDecompileCecilStudioPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/JustDecompileCecilStudioPackage.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/MenuItems/AssemblyNodeContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/MenuItems/AssemblyNodeContextMenu.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/MenuItems/AssemblyReferenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/MenuItems/AssemblyReferenceNode.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/MenuItems/EmbeddedResourceContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/MenuItems/EmbeddedResourceContextMenu.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/MenuItems/MemberDefinitionContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/MenuItems/MemberDefinitionContextMenu.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/MenuItems/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/MenuItems/MenuItem.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/MenuItems/MenuItemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/MenuItems/MenuItemBase.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/MenuItems/MenuSeparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/MenuItems/MenuSeparator.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/MenuItems/ModuleDefinitionContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/MenuItems/ModuleDefinitionContextMenu.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/MenuItems/ReflexilToolsMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/MenuItems/ReflexilToolsMenuItem.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/MenuItems/TypeDefinitionContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/MenuItems/TypeDefinitionContextMenu.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/PluginConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/PluginConfig.xml -------------------------------------------------------------------------------- /Reflexil.JustDecompile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/Properties/Resources.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/Properties/Settings.settings -------------------------------------------------------------------------------- /Reflexil.JustDecompile/Reflexil.JustDecompile.Module.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/Reflexil.JustDecompile.Module.csproj -------------------------------------------------------------------------------- /Reflexil.JustDecompile/Reflexil.JustDecompile.Module.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/Reflexil.JustDecompile.Module.csproj.vspscc -------------------------------------------------------------------------------- /Reflexil.JustDecompile/Reflexil.JustDecompile.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/Reflexil.JustDecompile.csproj.user -------------------------------------------------------------------------------- /Reflexil.JustDecompile/ReflexilHost.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/ReflexilHost.xaml -------------------------------------------------------------------------------- /Reflexil.JustDecompile/ReflexilHost.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/ReflexilHost.xaml.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/ReflexilModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/ReflexilModule.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/ChangeLog -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Compilation/AppDomainHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Compilation/AppDomainHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Compilation/CSharpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Compilation/CSharpHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Compilation/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Compilation/Compiler.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Compilation/ECSharpKeyword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Compilation/ECSharpKeyword.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Compilation/ESpaceSurrounder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Compilation/ESpaceSurrounder.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Compilation/ILanguageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Compilation/ILanguageHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Compilation/VisualBasicHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Compilation/VisualBasicHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Controls/Grid/GridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Controls/Grid/GridControl.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Controls/Grid/GridControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Controls/Grid/GridControl.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Controls/IOperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Controls/IOperandEditor.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Controls/NoneOperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Controls/NoneOperandEditor.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Controls/NullOperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Controls/NullOperandEditor.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Controls/Primitive/ByteEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Controls/Primitive/ByteEditor.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Controls/Primitive/LongEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Controls/Primitive/LongEditor.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CodeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CodeForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CodeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CodeForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CodeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CodeForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ConfigureForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ConfigureForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ConfigureForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ConfigureForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ConfigureForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ConfigureForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateInstructionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateInstructionForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateInstructionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateInstructionForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateInterfaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateInterfaceForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateInterfaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateInterfaceForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateOverrideForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateOverrideForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateOverrideForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateOverrideForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateParameterForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateParameterForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateVariableForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateVariableForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateVariableForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CreateVariableForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CustomAttributeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CustomAttributeForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/CustomAttributeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/CustomAttributeForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/DirectoryScanForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/DirectoryScanForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/DirectoryScanForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/DirectoryScanForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditCustomAttributeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditCustomAttributeForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditInstructionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditInstructionForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditInstructionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditInstructionForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditInterfaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditInterfaceForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditInterfaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditInterfaceForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditOverrideForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditOverrideForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditOverrideForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditOverrideForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditParameterForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditParameterForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditVariableForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditVariableForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditVariableForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/EditVariableForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ExceptionHandlerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ExceptionHandlerForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ExceptionHandlerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ExceptionHandlerForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexFindCancelForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexFindCancelForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexFindCancelForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexFindCancelForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexFindForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexFindForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexFindForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexFindForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexGotoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexGotoForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexGotoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/HexGotoForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/InjectForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/InjectForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/InjectForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/InjectForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/InjectForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/InjectForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/InstructionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/InstructionForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/InstructionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/InstructionForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/InstructionSelectForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/InstructionSelectForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/InstructionSelectForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/InstructionSelectForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/IntellisenseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/IntellisenseForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/IntellisenseForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/IntellisenseForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/InterfaceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/InterfaceForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/InterfaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/InterfaceForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/InterfaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/InterfaceForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/OverrideForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/OverrideForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/OverrideForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/OverrideForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/OverrideForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/OverrideForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ParameterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ParameterForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ParameterForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ParameterForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/PropertyGridForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/PropertyGridForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/PropertyGridForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/PropertyGridForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ReferenceUpdaterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ReferenceUpdaterForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ReferenceUpdaterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ReferenceUpdaterForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ReflexilWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ReflexilWindow.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ReflexilWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ReflexilWindow.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/ReflexilWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/ReflexilWindow.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/RenameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/RenameForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/RenameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/RenameForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/RenameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/RenameForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/StrongNameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/StrongNameForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/StrongNameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/StrongNameForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/StrongNameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/StrongNameForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/StrongNameRemoverForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/StrongNameRemoverForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/StrongNameRemoverForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/StrongNameRemoverForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/SyncWarningForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/SyncWarningForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/SyncWarningForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/SyncWarningForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/TypeSpecificationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/TypeSpecificationForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/TypeSpecificationForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/TypeSpecificationForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/VariableForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/VariableForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/VariableForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/VariableForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/VariableForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/VariableForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/VerifierForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/VerifierForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/VerifierForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/VerifierForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Forms/VerifierForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Forms/VerifierForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Handlers/IHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Handlers/IHandler.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Handlers/NotSupportedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Handlers/NotSupportedHandler.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Intellisense/ToolTipProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Intellisense/ToolTipProvider.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Keys/ICSharpCode.NRefactory.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Keys/ICSharpCode.NRefactory.snk -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Keys/ICSharpCode.TextEditor.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Keys/ICSharpCode.TextEditor.snk -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Keys/mono.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Keys/mono.snk -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Keys/reflexil.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Keys/reflexil.snk -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/MIT-LICENSE.txt -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Plugins/BasePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Plugins/BasePackage.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Plugins/BasePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Plugins/BasePlugin.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Plugins/GenericFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Plugins/GenericFactory.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Plugins/IAssemblyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Plugins/IAssemblyContext.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Plugins/IPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Plugins/IPackage.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Plugins/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Plugins/IPlugin.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Plugins/PluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Plugins/PluginFactory.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Plugins/Reflexil.Reflector/Libs/Binaries/put.reflector.here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Properties/Resources.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Properties/Settings.settings -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Properties/SolutionVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Properties/SolutionVersion.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/README.FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/README.FIRST.txt -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Reflexil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Reflexil.csproj -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Reflexil.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Reflexil.csproj.vspscc -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Reflexil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Reflexil.sln -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/bar.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/browser.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/copyhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/copyhs.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/cuths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/cuths.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/findhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/findhs.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/findnexths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/findnexths.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/opcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/opcodes.txt -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/openhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/openhs.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/pastehs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/pastehs.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/reflexil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/reflexil.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Resources/savehs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Resources/savehs.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Todo -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/AssemblyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/AssemblyHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/ByteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/ByteHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/CecilHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/CecilHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/DeleteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/DeleteHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/EBarImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/EBarImages.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/EBrowserImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/EBrowserImages.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/EInjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/EInjectType.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/ENumericBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/ENumericBase.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/FrameworkVersionChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/FrameworkVersionChecker.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/InjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/InjectHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/PEVerifyUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/PEVerifyUtility.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/RenameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/RenameHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/SdkUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/SdkUtility.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Utils/StrongNameUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Utils/StrongNameUtility.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Verifier/AssemblyVerification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Verifier/AssemblyVerification.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Verifier/VerificationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Verifier/VerificationError.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/IAssemblyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/IAssemblyWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/IWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/IWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/InstructionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/InstructionWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/NamespaceWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/NamespaceWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/OperandDisplayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/OperandDisplayHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/ParameterWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/ParameterWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/PropertyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/PropertyWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/VariableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/Wrappers/VariableWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/app.config -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.5.src/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.5.src/credits.txt -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/.gitignore -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/generate.AIO.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | generate AIO -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/generate.bat -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/ILMerge.exe -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/cp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/cp.exe -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/grep.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/grep.exe -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/mv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/mv.exe -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/rm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/rm.exe -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/sed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/sed.exe -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Build/Binary/tools/zip.exe -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/ChangeLog -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Compilation/AppDomainHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Compilation/AppDomainHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Compilation/CSharpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Compilation/CSharpHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Compilation/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Compilation/Compiler.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Compilation/ECSharpKeyword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Compilation/ECSharpKeyword.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Compilation/ESpaceSurrounder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Compilation/ESpaceSurrounder.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Compilation/ILanguageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Compilation/ILanguageHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Compilation/VisualBasicHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Compilation/VisualBasicHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Controls/Grid/GridControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Controls/Grid/GridControl.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Controls/Grid/GridControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Controls/Grid/GridControl.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Controls/IOperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Controls/IOperandEditor.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Controls/NoneOperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Controls/NoneOperandEditor.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Controls/NullOperandEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Controls/NullOperandEditor.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Controls/Primitive/ByteEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Controls/Primitive/ByteEditor.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Controls/Primitive/LongEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Controls/Primitive/LongEditor.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/AssemblyCleanerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/AssemblyCleanerForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/AssemblyCleanerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/AssemblyCleanerForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CodeForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CodeForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CodeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CodeForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CodeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CodeForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ConfigureForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ConfigureForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ConfigureForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ConfigureForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ConfigureForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ConfigureForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateInstructionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateInstructionForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateInstructionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateInstructionForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateInterfaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateInterfaceForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateInterfaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateInterfaceForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateOverrideForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateOverrideForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateOverrideForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateOverrideForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateParameterForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateParameterForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateVariableForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateVariableForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateVariableForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CreateVariableForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CustomAttributeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CustomAttributeForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/CustomAttributeForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/CustomAttributeForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/DirectoryScanForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/DirectoryScanForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/DirectoryScanForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/DirectoryScanForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditCustomAttributeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditCustomAttributeForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditInstructionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditInstructionForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditInstructionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditInstructionForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditInterfaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditInterfaceForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditInterfaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditInterfaceForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditOverrideForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditOverrideForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditOverrideForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditOverrideForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditParameterForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditParameterForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditVariableForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditVariableForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditVariableForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/EditVariableForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ExceptionHandlerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ExceptionHandlerForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ExceptionHandlerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ExceptionHandlerForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexFindCancelForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexFindCancelForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexFindCancelForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexFindCancelForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexFindForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexFindForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexFindForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexFindForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexGotoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexGotoForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexGotoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/HexGotoForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/InjectForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/InjectForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/InjectForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/InjectForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/InjectForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/InjectForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/InstructionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/InstructionForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/InstructionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/InstructionForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/InstructionSelectForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/InstructionSelectForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/InstructionSelectForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/InstructionSelectForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/IntellisenseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/IntellisenseForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/IntellisenseForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/IntellisenseForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/InterfaceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/InterfaceForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/InterfaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/InterfaceForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/InterfaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/InterfaceForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ObfuscatorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ObfuscatorForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ObfuscatorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ObfuscatorForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ObfuscatorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ObfuscatorForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/OverrideForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/OverrideForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/OverrideForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/OverrideForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ParameterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ParameterForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ParameterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ParameterForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/PropertyGridForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/PropertyGridForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/PropertyGridForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/PropertyGridForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ReferenceUpdaterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ReferenceUpdaterForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ReflexilWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ReflexilWindow.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/ReflexilWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/ReflexilWindow.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/RenameForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/RenameForm.Designer.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/RenameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/RenameForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/RenameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/RenameForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/StrongNameForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/StrongNameForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/StrongNameForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/StrongNameForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/SyncWarningForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/SyncWarningForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/SyncWarningForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/SyncWarningForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/VariableForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/VariableForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/VariableForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/VariableForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/VerifierForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/VerifierForm.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Forms/VerifierForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Forms/VerifierForm.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Handlers/IHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Handlers/IHandler.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Keys/mono.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Keys/mono.snk -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Keys/reflexil.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Keys/reflexil.snk -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Libs/Binaries/De4dot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Libs/Binaries/De4dot.dll -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Libs/Sources/De4dot/0-readme.txt: -------------------------------------------------------------------------------- 1 | De4dot source code is here. It's not directly used by the solution. 2 | -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Libs/Sources/De4dot/X-all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Libs/Sources/De4dot/X-all.bat -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Libs/Sources/De4dot/sources/dnlib/src/ExtensionAttribute.cs: -------------------------------------------------------------------------------- 1 | // Foo 2 | -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Plugins/BasePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Plugins/BasePackage.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Plugins/BasePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Plugins/BasePlugin.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Plugins/GenericFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Plugins/GenericFactory.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Plugins/IAssemblyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Plugins/IAssemblyContext.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Plugins/IPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Plugins/IPackage.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Plugins/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Plugins/IPlugin.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Plugins/PluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Plugins/PluginFactory.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Properties/Resources.resx -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Properties/Settings.settings -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Properties/SolutionVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Properties/SolutionVersion.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/README.FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/README.FIRST.txt -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/README.md -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Reflexil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Reflexil.csproj -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Reflexil.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Reflexil.csproj.vspscc -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Reflexil.jmconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Reflexil.jmconfig -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Reflexil.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Reflexil.sln -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/bar.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/browser.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/copyhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/copyhs.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/cuths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/cuths.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/findhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/findhs.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/findnexths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/findnexths.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/opcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/opcodes.txt -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/openhs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/openhs.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/pastehs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/pastehs.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/reflexil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/reflexil.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Resources/savehs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Resources/savehs.png -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Todo -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/AssemblyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/AssemblyHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/ByteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/ByteHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/CecilHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/CecilHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/De4dotHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/De4dotHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/DeleteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/DeleteHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/EBarImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/EBarImages.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/EBrowserImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/EBrowserImages.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/EInjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/EInjectType.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/ENumericBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/ENumericBase.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/InjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/InjectHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/PEVerifyUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/PEVerifyUtility.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/RenameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/RenameHelper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/SdkUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/SdkUtility.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Utils/StrongNameUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Utils/StrongNameUtility.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Verifier/VerificationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Verifier/VerificationError.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/IAssemblyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/IAssemblyWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/IWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/IWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/NamespaceWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/NamespaceWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/ParameterWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/ParameterWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/PropertyWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/PropertyWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/VariableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/Wrappers/VariableWrapper.cs -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/app.config -------------------------------------------------------------------------------- /Reflexil.JustDecompile/reflexil.1.8.src/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/Reflexil.JustDecompile/reflexil.1.8.src/credits.txt -------------------------------------------------------------------------------- /ThirdParty/Be.HexEditor/LICENSE.Be.HexEditor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/ThirdParty/Be.HexEditor/LICENSE.Be.HexEditor.txt -------------------------------------------------------------------------------- /ThirdParty/ICSharpCode.NRefactory/LICENSE.ICSharpCode.NRefactory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/ThirdParty/ICSharpCode.NRefactory/LICENSE.ICSharpCode.NRefactory.txt -------------------------------------------------------------------------------- /ThirdParty/ICSharpCode.SharpDevelop.Dom/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/ThirdParty/ICSharpCode.SharpDevelop.Dom/LGPL.txt -------------------------------------------------------------------------------- /ThirdParty/ICSharpCode.SharpDevelop.Dom/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/ThirdParty/ICSharpCode.SharpDevelop.Dom/README.txt -------------------------------------------------------------------------------- /ThirdParty/ICSharpCode.TextEditor/LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/ThirdParty/ICSharpCode.TextEditor/LGPL.txt -------------------------------------------------------------------------------- /ThirdParty/ICSharpCode.TextEditor/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/ThirdParty/ICSharpCode.TextEditor/README.txt -------------------------------------------------------------------------------- /ThirdParty/Mono.Cecil/LICENSE.Mono.Cecil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik-boneyard/justdecompile-plugins/HEAD/ThirdParty/Mono.Cecil/LICENSE.Mono.Cecil.txt --------------------------------------------------------------------------------