Managed refers to code that requires and will only execute under the control of a Common Language Runtime (CLR). Any code written in C# or Visual Basic .NET is managed code.
Questions tagged [managed]
890 questions
0
votes
1 answer
DLL Not Found after using ILMerge
After screwing my head several times over with SQLite causing havok on some machines, I stumbled across a 'Managed Only' version of the library. http://sourceforge.net/projects/sqlite-dotnet2/files/SQLite%20for%20ADO.NET%202.0/1.0.66.0/
I got…

Chris Watts
- 6,197
- 7
- 49
- 98
0
votes
3 answers
Debuging MEF without main app visual studio project
I am creatinig Managed Extensibility Framework extensions for some program. That program uses dll files witch i create. I dont have visual studio project of that program, but i have that program. I can run these extensions using that program, but…

macro
- 61
- 6
0
votes
1 answer
New Managed Path before a site collection
I already created a top level Web Application and site collection.
The powershell input for my site collection is.
Get-SPWebTemplate | Where{ $_.Title -eq "Team Site" } | ForEach-Object{ New-SPSite http://teampowershell.sharepoint1c.lab…

Neil Shrestha-Birtch
- 3
- 1
- 3
-1
votes
1 answer
Making Re-Usable Code
I have written a game engine in C++, however I would like to package it up in a file so I don't have to re-compile it every time I want to make a game. I read the MSDN articles on writing re-usable code, and putting it into managed Assembly or in a…

The Floating Brain
- 896
- 8
- 24
-1
votes
1 answer
How can I use MailComposer in my react native expo managed workflow project?
Error: Cannot find native module 'ExpoMailComposer'
this is the error I get as soon as I insert
import * as MailComposer from "expo-mail-composer";
in my code.
I believe the documentation says it works with managed workflows but it that is not the…

Noah Duran
- 9
- 2
-1
votes
1 answer
Visual studio 2022 VC++ class wizard new class has a managed option
I am using visual studio 2022 with c++, and I wanted to use the class wizard feature to add a class, when I noticed that in the add class menu there is an unselectable option titled "Managed".
I wanted to ask if anyone knows what it is, is it…

Tomer Trashman
- 31
- 4
-1
votes
1 answer
why dbghelp cannot resolve symbol from managed callstack?
What's the difference between managed callstack and native callstack, why cannot resolve the symbol from managed callstack by dbghelp? can anyone tell me the basic reason?

GuangJun Liu
- 39
- 7
-1
votes
1 answer
Azure managed application defintion and terraform scripts
Is it possible to create an "azure managed application definition" using createUIDefintion.json file and terraform scripts, instead of a mainTemplate.json (arm template) ?.

odin 147
- 1
- 1
-1
votes
1 answer
Azure Managed Instance - Virtual Machine
I have setup an Azure VM that is linked to my Managed SQL, but I need to install SSMS and ODBC drivers but the machine tells me nothing can be installed.
Also, I did the install from this…

michaelascend
- 13
- 4
-1
votes
2 answers
C++ Visual Studio Compiler compiles native code as managed
I have started a new solution under VS that has both a managed, UWP code project and a native project. The compiler compiles the native code and delivers a .lib file just fine. When compiling the managed code, the compiler compiles the native code…

doby
- 545
- 4
- 9
-1
votes
1 answer
Wix Managed Application not launching Install
i am working on a Wix Bootstrapper project where i am trying to make my Managed Application UI.
So now when i am running the LaunchAction.install from logs i can see that plan process is completed successfully but it is not applying the install…

Raheel Ahmad
- 67
- 7
-1
votes
1 answer
heap corruption when using pin_ptr to copy from native code to managed code
I am trying to copy unsigned short from native code to managed code, but I get a heap corruption when calling memcpy.
INPUT: unsigned short* input
OUTPUT: array output
I have the following code and if I set testDataSize is 100 then…

user1296153
- 575
- 6
- 23
-1
votes
1 answer
How to represent System.double in unmanaged C++?
I'm writing a standalone app for Solidworks using API in Unmanaged C++ and facing some kind of a problem.
There're methods for obtaining annotations' position coordinates on the drawing sheet - IGetPosition and GetPosition. Both a stated to have…

Sergey Kolesnik
- 3,009
- 1
- 8
- 28
-1
votes
1 answer
Managed DLL injection?
Basically I want to take a c# dll, encrypt it and save this as a file. Then another application opens this file decrypt it back into a byte array and without saving this to a file call a method in this decrypted buffer in memory. So far I have only…

Shaamil Ahmed
- 378
- 2
- 7
-1
votes
1 answer
Events from managed object not getting handled
Hello I'm new to C++ and trying to handle an event raised by a managed class ServerApi::Request
The managed class is a COM interface that I have imported into my visual studio project using the "add reference" tool to select the ServerApi.dll file.…

user7648231
- 1
- 2