The clr4.0 tag has no wiki summary.
2
votes
1answer
17 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 ...
1
vote
2answers
30 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" ...
0
votes
1answer
65 views
Get latest .NET framework directory
How can I get the latest .NET CLR Install location ?
[System.Runtime.InteropServices.RuntimeEnvironment]::GetRuntimeDirectory() is returning the 2.0* location even when the 4.0* is installed.
0
votes
1answer
78 views
Lazily create rich text box on WPF form and set caret to correct location
I am having prohibitive performance issues with WPF's RichTextBox on WPF forms.
So what I trying now is to replace all rich text controls with TextBlocks, and replace the TextBlock with a ...
2
votes
0answers
72 views
SQL server 2012 wont load CLR 4.0 assembles
I just upgraded to SQL Server 2012 with SP1 because I could not load CLR assemblies from .net 4.0. Now I have both 2008 and 2012 running on my VM. Im trying to load the assemblies into 2012 but I ...
0
votes
2answers
61 views
clr version for visual studio 2010
I have only visual studio 2010 in my machine. But, when I look at the visual studio command prompt for "clrver", it shows two versions of CLR are installed in my machine - v2.0.5 and v4.0.3
From this ...
2
votes
1answer
238 views
FileNotFoundException with XmlSerializers in application built using Spoon Studio .Net 4.0
I'm getting the following exception in our virtualized application packaged using Spoon Studio and .Net 4.0
Exception='System.IO.FileNotFoundException: Could not load file or assembly ...
1
vote
1answer
133 views
SQL Transaction commit leaves connection in corrupt state (c#)
Short:
After a call to transaction.Commit(), the next operation fails as if the transaction was not committed.
More details:
We have a thread running write queries to the database, some of which are ...
1
vote
1answer
67 views
CLR Assembly Binding
All,
I have few questions how program's assemblies bind to the underlying CLR version.
1) Is it possible to build/run .net 2.0 app that references .net 4.0 assemblies (which use CLR 4.0)? If so, ...
2
votes
3answers
201 views
CLR2 Compiled C# COM Doesn't Work with .Net 4
Does anyone know why a C# created COM library that was compiled under CLR2 (.Net 3.5) doesn't work when used with only CLR4(.Net 4)? What is missing in CLR4 that is in CLR2 for COM?
We are using the ...
2
votes
1answer
118 views
managed heap by CLR
I read about CLR in .net as:
When CLR loads heap is partitioned in SOH and LOH.
when application is started at that time heap is allocated by CLR to application depending on its size.
LOH heap has ...
1
vote
1answer
109 views
GC in .NET 4.0 not affecting Working Set in task manager
OK, just to be clear, I understand that the Task Manager is never a good way to monitor memory consumption of a program. Now that I've cleared the air...
I've used SciTech's .Net memory profiler for ...
-1
votes
3answers
119 views
Performance differences between automatic propreties and normally declared propreties. True or False? [closed]
Is there any difference between auto-implemented properties and manually implemented ones, from a performance point of view?
2
votes
2answers
226 views
How can two .NET CLR loaded in the same process talk to each other?
Now that it is possible to have two CLRs running on the same box, how could they 'talk' to each other?
Let's say that the GUI is running under .NET 2.0 CLR and there is a script running on the .NET ...
0
votes
1answer
74 views
IHostAssemblyStore::ProvideAssembly - Implementation for assemblies from folders
I'm trying to figure out how to load the AppDomainManager assembly in a managed clr hosting scenario from a folder different from the native .exe file.
Has anyone done an ...
6
votes
2answers
211 views
Does LINQ cache computed values?
Suppose I have the following code:
var X = XElement.Parse (@"
<ROOT>
<MUL v='2' />
<MUL v='3' />
</ROOT>
");
Enumerable.Range (1, 100)
.Select (s ...
1
vote
1answer
163 views
How to use Finalize with managed resources?
I'm not 100% clear on how an instance of class A can be defined to exist until after the last instance of class B is finalized.
Or in other words, I'd like all B's to call close&dispose methods ...
1
vote
2answers
89 views
Most efficent way to use locks for modifying two related fields based on previous values?
I know their are faster\better ways using Interlocked.CompareExchange but I'm just looking for the best way if you are limited to locks.
Joe Albahari says the following:
It’s also possible to ...
1
vote
2answers
115 views
Will implementing the IDisposable interface move the object to the Finalize list?
I am reading now about the Dispose and the Finalize method on the CLR ( 4.0 )
I dont understand something ...
If I add an implementation of Finalize ( ~className1 ) to my code => then the Finalize ...
0
votes
1answer
170 views
CLR Versioning + Framework Targeting, what is expected behaviour?
There is a lot of mismash of information out there regarding which version of the CLR an assembly will be loaded into so in hope to consolidate some answers to disambiguate the questions that follow ...
2
votes
2answers
3k views
Viewer tool for Global Assembly Cache (Viewer)
To view a list of the assemblies in the global assembly cache, at the command prompt, type the following command: gacutil –l
In earlier versions of the .NET Framework, the Shfusion.dll Windows shell ...
1
vote
1answer
80 views
Getting SQLAgent username fails
I have the windows console program code below that should show up NT Authoroty\Network Service but surprisingly it spells NetworkService without a space... When I check the account the SQLAgent is ...
5
votes
1answer
427 views
Why did the BeforeFieldInit behavior change in .NET 4?
In C# 4, the behavior of types without the beforefieldinit flag was changed, so now a type initializer can call before first use of any static field of the class.
My questions are why has the ...
3
votes
2answers
679 views
typeof(T) may return null
When using the typeof operator on type created through TypeBuilder, the operator will return null.
I'm curious why this happens and how to prevent it.
// ...
1
vote
0answers
515 views
System.AccessViolation Exception and Heap block modified past requested size during PInvokes
I am running into System.AccessViolation Exception and Heap block modified past requested size when trying to PInvoke a native call from managed code. The native code is COBOL win32 dll. The issue ...
1
vote
1answer
607 views
Tail call optimization in last CLR
I've discovered (by accident) that the last CLR does the tail call optimization. I have tested it with a piece of code, but frankly it doesn't behave the way I expected. I thought the tail call ...
4
votes
2answers
16k views
This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded
here's what i have got two box one win 2003 server IIS6 another one win2008 server IIS 7.0
I have a standalone app named Util (win app) built in .net 2.0 (VS2005) trying to load .net 4.0 dll/assembly ...
9
votes
3answers
531 views
Garbage collections improvements in CLR 4.0
Recently I was running the example provided by Andrew Hunter on his blog "The Dangers of the Large Object Heap" compiled against .NET 4 and I got the following numbers:
With large blocks: 622Mb ...
3
votes
0answers
171 views
Windows Shell Extension using Managed Code
basically every SO thread concerning Windows Shell Extensions (to e.g. display overlay icons or extend the explorer context menu for specific files) heavily advises against using managed code for this ...
0
votes
2answers
740 views
C++ CLR loading .net 4.0 dll when .net 4.0 is not installed
I have an application, written on c++ and compiled with VS 2010.
I need to load .net dll written on C# and compiled for .net 4.0 platform from c++ code and call some functions. I have already done ...
0
votes
1answer
78 views
How to avoid unregistering of mscoree 2.4 during 2.0 installation?
I've an application that depend on a reference to mscoree 2.0 (from .net 2.0-3.5).
I know that it isn't a good practice, but I've to live with it for now.
The app is installed with standard msi ...
10
votes
3answers
1k views
What exactly are new ETW features in CLR 4.0?
My colleague mentioned that there are some major improvements in CLR 4.0 related to Event Tracing for Windows but I couldn't find details of what exactly is new. There are few blog posts that mention ...
1
vote
1answer
457 views
.NET app.config file containing useLegacyV2RuntimeActivationPolicy not being used when app launched via file association
My app needs useLegacyV2RuntimeActivationPolicy in its .exe.config because it is a CLR4 app that uses mixed mode CLR2 assemblies.
All is well when starting our app from the Start Menu, but if a ...
0
votes
3answers
104 views
About csc.exe, is it neccesary to learn?
I am an intermediate programmer and these days I've been analyzing the CLR, my question is what is the need to learn all the commands of c# command line!!! It's so boring.
is it neccesary?
3
votes
1answer
93 views
Is there an example of how to customize a .NET 4.0 profiler?
I know there is one for profiler 2.0: http://www.codeproject.com/KB/dotnet/dotnetprofiler.aspx
But the profiler API has changed in .NET 4.0 and we need to consider in-process side by side issues. I ...
1
vote
1answer
475 views
Using a .NET-2.0-targeted COM DLL in the GAC on a .NET-4-only system
Greetings again,
Following up my previous question, I'm trying to maximize the compatibility of my C#-written Windows Explorer extension. In particular, I'm interested in making sure it works in an ...
0
votes
1answer
197 views
How to late bind a CLR 4.0 assembly from a 3.5 project?
The title is self-explanatory of what I want to accomplish. I have a COM-visible component built in 3.5 and my new projects are 4.0. Code very similar to the one below is what I want to run from the ...
0
votes
1answer
108 views
.Net object Life cycle\lifetime vs unmanaged code
I am trying to understand how objects are created in a .Net world as oppose to that in an unmanaged code environment (VB6 etc)
From what I understand, when an object is created in lets say C# by ...
3
votes
1answer
499 views
How does one create a .NET Expression with NodeType of ExpressionType.Index?
I'm writing code that evaluates .NET Expression trees. I'm trying to create a C# 4 test to exercise my handling of an ExpressionType.Index, but I can't figure out how to create that type of ...
7
votes
1answer
792 views
Does HyperDescriptor work when built in .NET 4?
I'm working on a .NET 4 project, and would be able to benefit from the dynamic property access that HyperDescriptor provides, but it doesn't seem to be working properly when built in .NET 4. I ...
3
votes
1answer
269 views
.NET 4 GC known thresholds to trigger collection?
I know that the logic for GC to trigger is not simple but it has certain thresholds to monitor.
Anyone knows what are these thresholds could be for .NET 4 workstation and server GC ?
Thank you
4
votes
1answer
1k views
Loading/Executing CLR 2.0 assemblies in CLR 4.0
Can the CLR 4.0 execute CLR 2.0 IL without the need for source code recompilation?
16
votes
2answers
4k views
Repercussions of enabling useLegacyV2RuntimeActivationPolicy?
For my current project, we're using some CLR 2 based mixed mode assemblies.
In order to use these from within a .NET 4 targetted assembly, I know you have to add ...
2
votes
4answers
799 views
Is there a c# precompiler define for the CLR version
I need to compile code conditionally by the CLR version.
e.g there's a code that I need to compile only in CLR 2 (.NET 3.5 VS2008) and not in CLR 4 (.NET 4 VS2010)
Is there a precompiler directive for ...
3
votes
2answers
395 views
Can we construct an instance of `OpCode`?
The .NET Framework 4.0 introduces several items to the Reflection API that range from extremely useful to vital for my work. Among these are protected constructors for Assembly, Module, MethodBody, ...
18
votes
3answers
6k views
Event and delegate contravariance in .NET 4.0 and C# 4.0
While investigating this question I got curious about how the new covariance/contravariance features in C# 4.0 will affect it.
In Beta 1, C# seems to disagree with the CLR. Back in C# 3.0, if you ...
18
votes
3answers
5k views
Single objects still limited to 2 GB in size in CLR 4.0?
As I understand it there's a 2 GB limit on single instances in .NET. I haven't paid a lot of attention to that since I have mainly worked on 32 bit OS so far. On 32 but it is more or less an ...
