tagged [assembly]
assembly to compare two numbers
assembly to compare two numbers What is the assembler syntax to determine which of two numbers is greater? What is the lower level (machine code) for it? Can we go even lower? Once we get to the bit l...
- Modified
- 7 Sep at 06:47
Could not load file or assembly, PublicKeyToken=null
Could not load file or assembly, PublicKeyToken=null > Could not load file or assembly 'NCrawler.GeckoProcessor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Wh...
- Modified
- 5 Jan at 21:32
How to load an .exe as a .NET assembly?
How to load an .exe as a .NET assembly? Can I just use?: Not sure if this is the way to do this? But when I try that approach, it throws a `Could not load file or assembly "CustomControlLib"` or one o...
- Modified
- 28 Apr at 15:15
How can I see the strong name of my assembly?
How can I see the strong name of my assembly? I have a project, and I created a strong name key file for it. How can I tell what the strong name of my assembly is? It seems this should be obvious, but...
- Modified
- 29 Jun at 08:52
What is the purpose of a stack? Why do we need it?
What is the purpose of a stack? Why do we need it? So I am learning MSIL right now to learn to debug my C# .NET applications. I've always wondered: - - - I'm trying to grasp this to help me understan...
- Modified
- 17 Apr at 21:52
How to add a reference to System.Numerics.dll
How to add a reference to System.Numerics.dll I want to use the BigInteger class from the System.Numerics but if i want to write `Numerics` is not found. I searched the web, and I found that I have to...
- Modified
- 20 Dec at 23:18
How to embed a satellite assembly into the EXE file
How to embed a satellite assembly into the EXE file I got the problem that I need to distribute a C# project as a single EXE file which is not an installer but the real program. It also needs to inclu...
- Modified
- 1 Aug at 22:45
How to get the assembly (System.Reflection.Assembly) for a given type in .Net?
How to get the assembly (System.Reflection.Assembly) for a given type in .Net? In .Net, given a type name, is there a method that tells me in which assembly (instance of System.Reflection.Assembly) th...
- Modified
- 17 Jul at 01:48
Compile/run assembler in Linux?
Compile/run assembler in Linux? I'm fairly new to Linux (Ubuntu 10.04) and a total novice to assembler. I was following some tutorials and I couldn't find anything specific to Linux. So, my question i...
8086 Assembler - Generating the object code from opcodes
8086 Assembler - Generating the object code from opcodes I'm working on an assembler for the 8086 . My question is how do you convert the hex opcodes to an executable file like .EXE,.ELF,.COM,a.out et...
- Modified
- 9 Aug at 09:36
Greater than, less than equal, greater than equal in MIPS
Greater than, less than equal, greater than equal in MIPS Given two registers `$s0`, `$s1`, how can I convert the following pseudocode into MIPS assembly language using only the `slt` (set on less tha...
While, Do While, For loops in Assembly Language (emu8086)
While, Do While, For loops in Assembly Language (emu8086) I want to convert simple loops in high-level languages into assembly language (for emu8086) say, I have this code: ``` for(int x = 0; x
- Modified
- 20 Aug at 03:16
C# Assembly.Load vs Assembly.ReflectionOnlyLoad
C# Assembly.Load vs Assembly.ReflectionOnlyLoad I'm trying to understand the differences between Assembly.Load and Assembly.ReflectionOnlyLoad. In the code below I am attempting to find all of the obj...
- Modified
- 20 Feb at 15:58
Is CIL an assembly language and JIT an assembler
Is CIL an assembly language and JIT an assembler Does the Just In Time Compiler`(JIT)` really map each of the Common Intermediate Language`(CIL)` instructions in a program to underlying processor's `o...
How to solve Windows Azure Diagnostic Runtime Error (Could not create WindowsAzure.Diagnostics, Version=xx, Culture=neutral, PublicKeyToken=xx
How to solve Windows Azure Diagnostic Runtime Error (Could not create WindowsAzure.Diagnostics, Version=xx, Culture=neutral, PublicKeyToken=xx The type initializer for 'SWConfigDataClientLib.LibManage...
- Modified
- 2 Jan at 17:48
The *deps.json file in .NET Core
The *deps.json file in .NET Core What is the purpose of *deps.json file in .NET Core? What is the reason to store references in such file and not in assembly manifest(as in standalone .NET Framework)?...
- Modified
- 7 Oct at 15:46
Reference to assembly without strong name
Reference to assembly without strong name Is there a way to reference a library without a strong name? When I add a reference to the assembly in references and rebuild solution everything is fine, but...
- Modified
- 21 Jan at 14:7
How can one see content of stack with GDB?
How can one see content of stack with GDB? I am new to GDB, so I have some questions: - How can I look at content of the stack? Example: to see content of register, I type `info registers`. For the st...
Is it possible to "decompile" a Windows .exe? Or at least view the Assembly?
Is it possible to "decompile" a Windows .exe? Or at least view the Assembly? A friend of mine downloaded some malware from Facebook, and I'm curious to see what it does without infecting myself. I kno...
- Modified
- 7 Nov at 18:44
Why is System.Web.Mvc not listed in Add References?
Why is System.Web.Mvc not listed in Add References? Using C#, Visual Studio 2010. There is a namespace called [System.Web.Mvc](http://msdn.microsoft.com/en-us/library/system.web.mvc.aspx) documented o...
- Modified
- 20 Nov at 02:43
Loading an assembly targeted for .NET 4.5 on a .NET 4.0 app domain
Loading an assembly targeted for .NET 4.5 on a .NET 4.0 app domain Assuming the system has .NET 4.0 and .NET 4.5 installed. Is it possible to load and work with a .NET 4.5 assembly from an assembly wr...
- Modified
- 1 Jan at 10:21
Assembly Binding redirect: How and Why?
Assembly Binding redirect: How and Why? This is not a problem question but a general understanding question on assembly binding redirect's working. 1. Why binding redirect shows only major version and...
- Modified
- 12 Apr at 09:41
How to view the Folder and Files in GAC?
How to view the Folder and Files in GAC? I want to view the folders and sub folders in [GAC](https://en.wikipedia.org/wiki/Global_Assembly_Cache). Also want to know about adding and removing from [GAC...
- Modified
- 5 Nov at 07:16
Adding a .S file to the linux kernel code
Adding a .S file to the linux kernel code I'm trying to add a new assembly (.S) file to the Linux kernel. It may be a dumb question, but I can't seem to find how and where to add such files to the mak...
- Modified
- 19 Nov at 15:3
What is the order of returned Types by Assembly.GetTypes()?
What is the order of returned Types by Assembly.GetTypes()? If I get the list of types in my AppDomain, is there an inherent ordering to these types? This seems to produce a list that's by types in a ...
- Modified
- 9 Aug at 18:5