2
votes
5answers
460 views
My 32 bit headache is now a 64bit migraine?!? (or 64bit .NET CLR Runtime issues)
What unusual, unexpected consequences have occurred in terms of performance, memory, etc when switching from running your .NET applications under the 64 bit JIT vs. the 32 bit JIT? I'm interested in …
0
votes
1answer
60 views
How to call a CLR Stored Procedure from codebehind of an aspx page?
Hi all
How to call a CLR Stored Procedure from codebehind of an aspx page?
I am using SqlCommand with commandtext as CLR Stored Procedure name and SqlHelper.ExecuteDataSet() as below.
string …
0
votes
1answer
38 views
Why is there a difference in error handling clr procedures in sql server 2005?
I am using a clr procedure in one of my normal stored procs and i'm experiencing an odd error handling situation. Check the following code, it works as expected...
BEGIN TRY
create table #test(id …
7
votes
10answers
221 views
Is there a possibility of there ever being a PHP.NET?
Sorry if this is a silly and/or stupid question but... Will there ever be, or would it even be possible to have a PHP.NET? Or have I got the wrong end of the stick?
It seemed to me that one of the …
2
votes
2answers
56 views
Axapta Validation Class
I've written a method to handle regex validation in AX2009. Problem is that it always returns false, no matter what the expression or input string. Returns no errors, just 'false' Mind taking a …
0
votes
4answers
82 views
String comparison equivalents
I believe these 2 lines are equivalent but after running into a strange issue I no longer believe this to be the case.
String mimeType = context.Request.ContentType;
(String.Compare("text/xml", …
1
vote
3answers
62 views
IL / CLR / DLR References?
I'm wanting to learn more about IL and CLR / DLR under the hood. A friend of mine recommended the book "Inside Microsoft .NET IL Assembler", but since it came out in 2002 I fear it's pretty out of …
0
votes
4answers
56 views
Is there a c# precompiler define for the CLR version
Hi,
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 …
5
votes
4answers
113 views
What are the situations or pros and cons to use of C++/CLI over C#
I have been keeping up with .NET CLR for awhile now, and my language of choice is C#.
Up until recently, I was unaware that C++/CLI could produce "mixed mode" executables capable of running native …
11
votes
6answers
603 views
jvm design decision
Why does the jvm require around 10 MB of memory for a simple hello world but the clr doesn't. What is the trade-off here, i.e. what does the jvm gain by doing this?
Let me clarify a bit because I'm …
0
votes
0answers
4 views
Resolving MSB3247 - Found conflicts between different versions of the same dependent assembly
A .NET 3.5 solution ended up with this warning when compiling with msbuild.
Sometimes NDepend might help out but in this case it didn't give any further details. Like Bob I ended up having to resort …
3
votes
0answers
133 views
Lifetime of worker process or AppDomain
I have an ASP.NET app hosted in IIS, and I have automatic worker process recycling/shutdown disabled. I'd like to have a rough idea of how long the app has been running continuously without being …
1
vote
1answer
197 views
LinQ to SQL and CLR User Defined Types
Hi there,
I have created a User Defined Type in .Net 3.5 as per my blog entry at :
http://jwsadlerdesign.blogspot.com/2009/04/this-is-how-you-register.html
This works fine when using SQL with …
0
votes
3answers
82 views
ASP.NET - context-agile object,Data sharing concept in application domain ?
I read some articles about Application Domain.The deep reading finally resulted in whirling
confusion.So I submit the questions to subject experts.
1) As CLR takes care of creating AppDomain as …
1
vote
2answers
43 views
What are the compiler, CLR or CPU optimizations to be aware of when working with threads and non-blocking synchronization?
As the title says, what are the compiler, CLR or CPU optimizations to be aware of when working with threads and non-blocking synchronization?
I have read a little about the reordering of instructions …
