The Common Language Runtime (CLR) is a core component of Microsoft's .NET initiative. It is Microsoft's implementation of the Common Language Infrastructure (CLI) standard, which defines an execution environment for program code. In the CLR, code is expressed in a form of bytecode called the Common ...
0
votes
0answers
10 views
Adding a .net dll into silverlight project
I use a third party library in my project (Windows Forms) and it works well.
Now i want to use the same dll in silverlight, but it says Non Silverlight assemblies cannot be referenced to. So i have ...
0
votes
1answer
13 views
CoInitializeSecurity failed on disabling clr option
I have an application which is written in managed code and runs sucessfully, however now i disabled the /clr option from visual studio 2008 and made necessary changes to remove the manages code and ...
3
votes
1answer
38 views
Can string pooling be corrupted or confused by use of unsafe C# code?
If I manipulate a managed C# string in place (for example, reverse its characters) by using pointers in an unsafe code block or method, can that unsafe implementation confuse or corrupt the .NET ...
12
votes
2answers
187 views
When is a Double not a double? [duplicate]
After seeing how double.Nan == double.NaN is always false in C#, I became curious how the equality was implemented under the hood. So I used Resharper to decompile the Double struct, and here is what ...
1
vote
1answer
21 views
How i can create assembly reference for mscorlib.dll ver 5 in SQL Server 2012
I Use SQL Server 2012 and i want create CLR
I want execute this command in SQL Server 2012
CREATE ASSEMBLY AndishCSSCommon FROM 'C:\Andish.CSS.Common.dll'
WITH PERMISSION_SET=EXTERNAL_ACCESS
...
2
votes
0answers
37 views
Best way to write C ++/CLI nested object accessors
Here is the situation:
I have an Unmanaged library Written in C/C++ and I would like to access those functions and structures in the CLR, but I am having trouble with writing basic accessors for the ...
0
votes
1answer
84 views
why does `unbox` OpCode transform a reference to a value type pointer? Are they not the same thing?
From MSDN unbox does
An object reference is pushed onto the stack.
The object reference is popped from the stack and unboxed to a value type pointer.
The value type pointer is pushed onto the stack.
...
0
votes
0answers
34 views
+100
What's the size of Garbage Collector implementations in common VMs and what can be learned from it?
Looking at Java/OpenJDK, it seems that every “new” garbage collection implementation is roughly one magnitude larger than the preceding one.
What are the sizes of Garbage Collector implementations in ...
0
votes
1answer
39 views
NGen and generic collections. How to get rid of Jitting?
I'm struggling with ngen and generic collections. I've ngen'ed all my assemblies in solution, but still somehow jitting is occurred every time my app is executing that code:
private ...
0
votes
0answers
29 views
Linking error when converting project of VS2008 to VS2005
While converting the project of VS2008 to VS2005, I had manually added the files and then build the solution. Everything was successfully done, but one problem is coming.
During linking its showing ...
1
vote
1answer
20 views
Bubbling errors from c++/clr to c#/.net
I have the following code begin ran in a native/win32 c++ library.
// Load lt dll
OutputDebugString(L"LoadLtDll");
m_LTDll = LoadLtDll("C:/Program Files/Enciris Technologies/LT101 Driver ...
4
votes
1answer
29 views
IronPython, IronRuby, IronScheme, IronSomething
why some languages that targets .net platform has Iron- as a prefix? It seems like such convention only applies to non-microsoft developed languages.
2
votes
2answers
75 views
Garbage collection of circular referenced object
Lets say I have 2 objects - object A and object B. Object A references Object B and object B references Object A.
If Both Object A & Object B are out of ref of the code - how does Garbage ...
2
votes
2answers
146 views
Does execution stack and thread's stack and local variable list refer to different stacks?
A value type may be stored in a thread's stack, and IL runs in the execution stack (abstract concept).
int y=0;
int a=0;
int b=0;
int x = y + (a - b);
IL_0001: ldc.i4.0
IL_0002: stloc.0 ...
0
votes
3answers
53 views
Quick insert from C# CLR
I am working on a huge set of data, and using CLR for processing it. The CLR processing is working quick, but I need a quick way to move the processed data to the database(through CLR).
For example, ...
0
votes
0answers
41 views
How to see code of method which marked as MethodImplOptions.InternalCall?
When use ILSpy to check the code of System.String, I found there are some methods marked as MethodImplOptions.InternalCall such as:
[SecurityCritical]
[MethodImpl(MethodImplOptions.InternalCall)]
...
0
votes
0answers
63 views
CLR multithreading, deadlock - livelock [closed]
I am trying to understand concept of deadlocks and livelocks in multithreading. I think I grasp the abstract concepts. I am wondering if livelocks are possible to encounter in CLR development. When do ...
0
votes
2answers
70 views
Console::WriteLine() vs. cout
I've just started trying to teach myself C++ (I've been a C# programmer for about a year now) and I can't understand for the life of me what the difference is between Console::WriteLine("Hello World") ...
0
votes
0answers
55 views
Recursive Generic Definition
So I was watching this video of the awesome Jon Skeet: http://www.youtube.com/watch?v=3DkISWIouY4 (watch from the beginning to see the part I'm going to ask you about!)
So consider the following ...
1
vote
1answer
59 views
How do I instantiate CorRuntimeHost from mscoree.tlb in PowerShell?
I want to enumerate all the AppDomains in the current process from PowerShell. The process happens to be Visual Studio, which is hosting StudioShell. To do that I need to instantiate CorRuntimHost, ...
1
vote
2answers
74 views
Why is reflection computationally expensive? [duplicate]
Obviously reflection is a very extensive subject, but let's take a simple example: The "is" operator (A is B). What does it actually require the CLR to do? To look through the assembly's metadata, ...
0
votes
0answers
40 views
How to connect to MySQL with VC++ CLR connector? [closed]
I have found an example to connect to MySql with VC++ CLR
in the link below:
http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/15f0507f-0542-4966-8efe-a24e80757c09
The problem is that ...
-2
votes
0answers
31 views
What are todays alternatives to C++ Forms application in new projects? [closed]
today I wanted to create basic C++ forms application (after a long time) and I've noticed that the template is missing. After a quick search, a Microsoft feedback site came up. They say that it should ...
0
votes
1answer
22 views
native dll calls a .NET dll
I am trying to figure out how this can work:
I have a .NET dll, say NETDll.dll, that I have not source code to modify.
I want to use that NETDll.dll in my C++ project, which is going to create a ...
0
votes
1answer
22 views
VarChar to NVarChar and back
The environment is SQL Server 2012. I'm about to change a clr procedure returned result column from varchar to nvarchar, but I'm not sure if the characters which can be found in varchar code page will ...
0
votes
1answer
32 views
Getting “Cannot find the type nvarchar(MAX)” when adding new CLR user defined function
I have created a new function in an assembly which has been successfully added as a CLR Assembly to my sql server. Now I am trying to create a Sql user defined function to map to the new method in ...
2
votes
1answer
18 views
Registering to 'GCAllocationTick_V1' CLR event from C#
I'm trying to add some profiling capabilities to a server application.
I have found 'GCAllocationTick_V1' event and I would like to monitor it and react to it in code. Unfortunately, I couldn't find ...
4
votes
2answers
60 views
passing data members by reference
What happens if I pass a data member by reference to a function, and while that function is running, the Garbage Collector starts running and moves the object containing the data member in memory?
...
0
votes
1answer
113 views
Why C# threads goes idle during the execution?
I have a scheduler which runs as background thread on application start of an ASP.NET site. User can initiate various tasks (alert emails/file generation etc) which is inserted in a db table. The ...
8
votes
2answers
56 views
How to conditionally invoke a generic method with constraints?
Suppose I have an unconstrained generic method that works on all types supporting equality. It performs pairwise equality checks and so works in O(n2):
public static int ...
1
vote
2answers
33 views
What's the difference between using useLegacyV2RuntimeActivationPolicy and multiple supportedRuntimes
What is the difference between the three following scenarios (in an app.config files of an exe)?
<startup>
<supportedRuntime version="v4.0" />
<supportedRuntime version="v2.0" ...
6
votes
2answers
190 views
sql server CLR scalar function with default column name
I was wondering, if there's any way to add a column names to my CLR scalar functions in Sql Server. I mean that after I run my query, I'd like to see a column with a result of this function already ...
3
votes
3answers
131 views
IL and arguments
IL has some opcodes for operating with arguments, such as Ldarg.0 , Ldarg.1 and so on.
I know that those arguments are pushed onto the stack before a call opcode is executed, in some cases Ldarg.0 is ...
1
vote
3answers
34 views
Detecting and Updating a small number of changes in a table
I have a table of employees of a company.
Everyday, I am getting a spreadsheet of the latest list of employees of the company. If any person (based on SSN) in the table is not in the spreadsheet, ...
1
vote
3answers
54 views
Is “CLR” the same thing as “.NET runtime”?
While reading Troelsen's book "Pro C# 5.0 and the .NET 4.5 Framework", I came across those 2 terms.
I understand more or less what a Common Language Runtime(CLR) is, but is ".NET runtime" the same ...
5
votes
1answer
55 views
How do I find all assemblies containing type/member matching a pattern?
I have a folder (possibly, with nested sub-folders) containing thousands of files, some of them are DLLs, and some of those DLLs are .NET assemblies. I need to find all assemblies containing ...
0
votes
0answers
35 views
Visual Studio 2012 - Values in debug watch are not displayed when compiled with /clr
The debug watch doesn't display values for objects like std::vector for example.
On the other hand, values of local integers are displayed.
When I compile the project without /clr option everything ...
0
votes
1answer
34 views
Get the currently executing method name of current thread
I am using a background worker to process big files in a loop lasting for hours. In the GUI, I show the currently progressed file with a label, and a progressbar control. Everything is most of the ...
0
votes
2answers
202 views
How does a virtual machine execute instructions?
I have a strong C++ background and never really had a deep understanding of Java or C#. However, I am curious about the internal workings of the virtual machines. I've experimented with some windows ...
1
vote
1answer
53 views
tracking down an uncatchable thread abort in c#
I'm getting a ThreadAbortException in C# in generic try catch block (catching all exceptions) -- however, I'm unable to get a trace on it, indicating it was probably killed outside of managed code.
I ...
8
votes
2answers
77 views
How to create a delegate from a MethodInfo?
I need a method that takes a MethodInfo instance representing a non-generic static method with arbitrary signature and returns a delegate bound to that method that could later be invoked using ...
5
votes
1answer
36 views
How do I recognize a System.Type instance representing SZ-Array?
CLR uses distinct System.Type instances to represent SZ-arrays (Single-dimensional, Zero-based, aka vectors) and non-zero-based arrays (even if they are single-dimensional). I need a function that ...
4
votes
3answers
61 views
CIL OpCode (Ldarg_0) is used even though there are no arguments
I have the following C# code.
public void HelloWorld()
{
Add(2, 2);
}
public void Add(int a, int b)
{
//Do something
}
It produces the following CIL
.method public hidebysig instance void ...
0
votes
0answers
32 views
Exception: Cannot marshal 'parameter #X': Pointers cannot reference marshaled structures. Use ByRef instead
I'm working in VS2010 C++ and I have a C++/CLI call to FormatMessage() that draws a strange exception. Here is the block of code below below.
if((m_hglrc = wglCreateContext(m_hDC)) == NULL)
{
...
0
votes
1answer
89 views
I have a C++ DLL type project in Visual Studio 2012 Pro but I can't compile it as CLR - Why is that?
I have a C++ project which is DLL type with a C file I created inside.
Now I need to use CLR since I want to use the DLL later on .NET C#.
Now in the general project properties I have:
Target ...
0
votes
0answers
58 views
what is the difference between managed heap and GC heap
Can anyone explain to me the difference between managed heap and GC heap? Since I noticed that sometimes the total managed heap size < (Gen 0 + Gen 1 + Gen 2 + LOH) in Process explorer + VMMap.
...
0
votes
0answers
34 views
Inline caching for virtual calls in .Net
Does .Net CLR perform inline caching for virtual calls same as Hotspot JVM ?
0
votes
2answers
47 views
Assembly Configuration CLR Stored Procedure
Is it possible to have an app.config file for CLR Stored Procedures. Just so that one can specify more options in the config file?
1
vote
1answer
59 views
Return Uniqueidentifier from CLR Function
I am creating a CLR function for SQL Server 2008 R2. The CLR function returns an uniqueidentifier, which can sometimes be null. It works when the return value is not null. However, when a null ...
0
votes
1answer
48 views
Adding Web reference to CLR console application gives error C1083
As soon as I add Web reference to CLR console application (as mentioned in this link http://msdn.microsoft.com/en-us/library/14hykb68%28VS.80%29.aspx), It gives the file missing error message like ...




