active questions tagged clr - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T14:04:50Z http://stackoverflow.com/feeds/tag/clr http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/781081/linq-to-sql-and-clr-user-defined-types 1 LinQ to SQL and CLR User Defined Types James 2009-04-23T10:05:40Z 2009-12-07T17:44:03Z <p>Hi there,</p> <p>I have created a User Defined Type in .Net 3.5 as per my blog entry at :</p> <p><a href="http://jwsadlerdesign.blogspot.com/2009/04/this-is-how-you-register.html" rel="nofollow">http://jwsadlerdesign.blogspot.com/2009/04/this-is-how-you-register.html</a></p> <p>This works fine when using SQL with technologies like nHibernate. </p> <p>However, when I try to map my LinQ to SQL class to use this UDT (with attribute defintions not XML), and I setup the property as the enumeration. I cannot get LinQ to map to this type. I have tried Image, Binary, varchar and integer all of which seem to issue Invalid Cast errors. </p> <p>In particular I get the error 'Unable to cast object of type 'ISTD.InstallManager.Common.Classes.SQLUDTTargetType' to type 'System.Byte[]' any ideas or help would be much appreciated.</p> <p>James.</p> http://stackoverflow.com/questions/1462768/asp-net-context-agile-object-data-sharing-concept-in-application-domain 0 ASP.NET - context-agile object,Data sharing concept in application domain ? csharpbaby 2009-09-22T21:34:56Z 2009-12-07T11:31:46Z <p>I read some articles about Application Domain.The deep reading finally resulted in whirling confusion.So I submit the questions to subject experts.</p> <p></p> <p>1) As CLR takes care of creating AppDomain as and when needed,could there be a critical need to go for manual Application Domain Creation ?</p> <p>2)I heard that one application domain can not share data with other application domain (i am not sure).What about the case of windows communication foundation ?</p> <p>3) Normally the basic libraries (system.dll,mscorlib.dll) are loaded in default application domain. can i load them in custom created application domain ? if it is possible,will CLR keep a copy in Default application domain ?</p> <p>like</p> <pre><code> ------------------ ---------------- Default AppDomain Custom Appdomain ------------------- ---------------- mscorlib.dll mscorlib.dll System.dll System.dll ..... ....... ----------------- ----------------- </code></pre> <p>4) What is the term context-agile object in application domain referes to?</p> http://stackoverflow.com/questions/1848326/what-are-the-compiler-clr-or-cpu-optimizations-to-be-aware-of-when-working-with 1 What are the compiler, CLR or CPU optimizations to be aware of when working with threads and non-blocking synchronization? Egil Hansen 2009-12-04T17:03:27Z 2009-12-06T15:30:48Z <p>As the title says, what are the compiler, CLR or CPU optimizations to be aware of when working with threads and non-blocking synchronization?</p> <p>I have read a little about the reordering of instructions to improve efficiency that could break things, and caching optimizations that will result in variables not being visible to other threads right away <a href="http://www.albahari.com/threading/part4.aspx" rel="nofollow">[0]</a>, but are there other (I sure there are) that I need to be aware of?</p> <p>Any links to recommended reading/blogs/articles/etc will be much appreciated.</p> <p>Thanks, Egil.</p> <p><strong>Update:</strong> Thanks to Jons link to Joe Duffy's blog post I found a lot more great information that I thought I would share with you guys:</p> <ul> <li>The primary article that many point to is <a href="http://msdn.microsoft.com/en-us/magazine/cc163715.aspx" rel="nofollow">Understand the Impact of Low-Lock Techniques in Multithreaded Apps</a> by Vance Morrison. </li> <li><a href="http://msdn.microsoft.com/en-us/magazine/cc163744.aspx" rel="nofollow">What Every Dev Must Know About Multithreaded Apps</a>, also by Vance Morrison, is a very good fresher up for those of us who do not dabble in multithreaded applications daily.</li> <li>Joe Duffy's <a href="http://msdn.microsoft.com/en-us/magazine/cc163427.aspx" rel="nofollow">9 Reusable Parallel Data Structures and Algorithms</a> is also a great read.</li> <li>More of the same from Jeffrey Richter in his <a href="http://msdn.microsoft.com/en-us/magazine/cc163726.aspx" rel="nofollow">Concurrent Affairs column Performance-Conscious Thread Synchronization</a>. His implementation of a SpinWaitLock is pretty nice.</li> <li>In general, the <a href="http://msdn.microsoft.com/en-us/magazine/ee532402.aspx?sdmr=concurrentaffairs&amp;sdmi=columns" rel="nofollow">Concurrency Affairs columns over at MSDN Magazine</a> are very recommendable.</li> </ul> http://stackoverflow.com/questions/1852657/how-does-the-net-clr-work 0 How does the .NET CLR work? munna 2009-12-05T16:36:02Z 2009-12-05T17:22:40Z <p>I've been searching this on net, but could not find one in layman's language. Can anyone help me out?</p> http://stackoverflow.com/questions/1835469/lifetime-of-worker-process-or-appdomain 3 Lifetime of worker process or AppDomain gWiz 2009-12-02T20:10:41Z 2009-12-04T22:56:19Z <p>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 re-loaded.</p> <p>My thinking is that one source from which this can be gleaned is information about when the worker process was last recycled, perhaps in IIS logs or performance counters. Or alternatively, from information about when the AppDomain itself was created, perhaps in performance counters. Either way, I can't find any such information. Short of changing the code, is it possible to determine this for an already-deployed app?</p> <p><strong>Edit:</strong> Perhaps 3rd party tools that monitor processes? Or information from IIS in the event log?</p> <p><strong>Answered on ServerFault:</strong> <a href="http://serverfault.com/questions/90927/lifetime-of-iis-worker-process-or-appdomain/90966#90966">http://serverfault.com/questions/90927/lifetime-of-iis-worker-process-or-appdomain/90966#90966</a></p> http://stackoverflow.com/questions/33727/clr-profiler-attaching-to-existing-process 1 CLR Profiler - Attaching to existing process Daniel Magliola 2008-08-29T00:54:44Z 2009-12-04T18:43:19Z <p>I would like to use something like CLR Profiles on .Net 2.0 to see what objects are taking more space in the heap at any given time (of an ASP.Net worker process).</p> <p>However, the CLR Profiler only lets me START an app, not attach to an existing one. I assume this is because it tracks allocations and GC too, but i'm not very interested in that. I would just like something that takes a snapshot of the current state of the heap, and shows me what is there and how many objects of each kind there are, and how many bytes total are being used by each object type.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/971178/referencing-a-3rd-party-class-library-within-a-sql-clr-class 0 Referencing a 3rd Party class library within a SQL Clr Class Andy 2009-06-09T16:36:48Z 2009-12-04T18:00:03Z <p>I am creating a SQL CLR assembly that needs to use a Third Party assembly inside it. The trouble is I cannot reference this assembly as only ones already deployed to SQL or other SQL project references are allowed.</p> <p>Is it possible to use 3rd party assemblies in a SQL CLR assembly and if so how?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1846587/execution-time-performance-of-code-in-class-created-using-reflection-versus-a-no 1 Execution-time performance of code in class created using reflection versus a 'normal' class. Ash 2009-12-04T12:13:28Z 2009-12-04T12:26:21Z <p>Is the execution time (run-time) performance of code in a class that is loaded via reflection <em>identical</em> to the same code when the class is created using the new keyword?</p> <p>I say yes. But I was discussing this with a colleague who believes that the reflection oriented code is always slower. </p> <p>My view is that regardless of how the class was originally loaded/created, the performance will be identical because the JIT compiler does not care how a class was loaded. </p> <p>Am I correct? Either way, I'd appreciate any references that can help clarify this.</p> <p>(NB: I'm not talking about the performance of <em>creating</em> a class using reflection versus the new keyword. I'm referring to the actual code in methods of the class after it has been created.)</p> http://stackoverflow.com/questions/1842636/why-cannot-c-generics-derive-from-one-of-the-generic-type-parameters-like-they-c 2 Why cannot C# generics derive from one of the generic type parameters like they can in C++ templates? mark 2009-12-03T20:20:39Z 2009-12-03T22:45:53Z <p>Why cannot C# generics derive from one of the generic type parameters like they can in C++ templates? I mean I know it impossible because CLR does not support this, but why?</p> <p>I am aware of the profound differences between C++ templates and C# generics - the former are compile time entities and must be resolved during the compilation, while the latter are first class run-time entities.</p> <p>Still, I am failing to see <strong>the reason</strong> why CLR designers did not come up with a scheme which would ultimately enable a CLR generic type to derive from one of its generic type parameters. After all, this would be tremendously useful feature, I personally miss it greatly.</p> <p><strong>EDIT:</strong></p> <p>I would like to know of a hard-core issue, fixing which yields such a high price on implementing this feature that justifies it not being implemented yet. For instance, examine this fictional declaration:</p> <pre><code>class C&lt;T&gt; : T { } </code></pre> <p>As Eric Lippert has noticed what if "<strong>What if T is a struct? What if T is a sealed class type? What if T is an interface type? What if T is C?! What if T is a class dervied from C? What if T is an abstract type with an abstract method? What if T has less accessibility than C ? What if T is System.ValueType? (Can you have a non-struct which inherits from System.ValueType?) What about System.Delegate, System.Enum, and so on?</strong>"</p> <p>As Eric continues, "<strong>Those are the easy, obvious ones</strong>". Indeed, he is right. I am interested in a concrete example of some neither easy nor obvious issue, which is hard to resolve.</p> http://stackoverflow.com/questions/1743681/axapta-validation-class 2 Axapta Validation Class Brad 2009-11-16T17:36:32Z 2009-12-03T22:05:26Z <p>I've written a class 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 look? I'm probably missing something simple.</p> <pre><code>static boolean validateMe(str regexFilter, str _testString) { System.Text.RegularExpressions.Regex regEx; System.Text.RegularExpressions.Match regMatch; InteropPermission permission = new InteropPermission(InteropKind::ClrInterop); boolean retVal; str regExpression; ; //See if any of the static expressions were selected switch (regexFilter) { case 'integer' : regExpression = @'^\d*$'; break; case 'number' : regExpression = @'^\d*\.?\d*$'; break; case 'email' : regExpression = @'^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$'; break; case 'phone' : regExpression = @'^(\()?(\d{3})(\)|-)?([0-9]{3})(-)?([0-9]{4}|[0-9]{4})$'; break; case 'nopunctationphone' : regExpression = @'^\d{10}$'; break; default : //No static expression matched, use the passed-in value regExpression = regexFilter; } //establish permissions permission.assert(); //create the object //BP Deviation Documented regEx = new System.Text.RegularExpressions.Regex(regexFilter); //see if the string matches if (_testString != '') { //see if string matches expression; validation is good regMatch = regEx.Match(strltrim(strrtrim((_testString)))); retVal = regMatch.get_Success(); } else { //string does NOT match expression; validation is bad retVal = false; } return retVal; } </code></pre> http://stackoverflow.com/questions/1838728/when-a-thread-is-blocked-on-monitor-enterobj-is-it-put-in-objs-ready-queue 0 When a thread is blocked on Monitor.Enter(obj), is it put in obj's ready queue? gWiz 2009-12-03T09:24:42Z 2009-12-03T09:34:02Z <p>If so, that would imply that the blocked thread can enter when another thread calls <code>Monitor.Wait(obj)</code>. This seems a little odd to me in that it must contend with other threads in the ready queue.</p> <p>If not, can it only un-block when <code>Monitor.Exit(obj)</code> is called? Or is it in obj's waiting queue?</p> <p>This isn't clearly documented in the MSDN Library class documentation.</p> http://stackoverflow.com/questions/1623176/assembly-creation-clr 1 Assembly creation - CLR Justin 2009-10-26T05:09:00Z 2009-12-03T05:29:36Z <p>I am learning concepts related to .NET framework. I am confused at one point. From what I understand the compilers CSC.exe and AL.exe compiles the files to form assembly based on the switches. So my question is 1) Different compilers in .NET framework targets the CLR. So does this mean that individual files(code) and resource files are compiled to form an assembly and this assembly is executed at runtime by the CLR?</p> <p>2) How does this happen when I use Visual Studio .NET?</p> <p>Thanks, Justin Samuel.</p> http://stackoverflow.com/questions/1833700/il-clr-dlr-references 1 IL / CLR / DLR References? Donnie 2009-12-02T15:39:44Z 2009-12-03T02:35:40Z <p>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 date at this point.</p> <p>Does anyone have any more up-to-date books or websites that can be used by someone who understands .NET languages to learn more about the inner workings of IL and the CLR?</p> http://stackoverflow.com/questions/911684/why-are-sealed-types-faster 13 Why are sealed types faster? Joan Venge 2009-05-26T16:54:03Z 2009-12-01T23:26:48Z <h3>Duplicate:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/268251/">Why seal a class?</a></p> </blockquote> <p>I am wondering about the deeper details about why this is true.</p> http://stackoverflow.com/questions/1827007/same-code-acts-differently-on-different-machines-what-might-be-the-cause-clr 3 Same code acts differently on different machines - what might be the cause ? (CLR version issue ?) driis 2009-12-01T15:41:19Z 2009-12-01T18:06:34Z <p>I just finished debugging a problem, where our program crashed on a production server, but never on development machines. </p> <p>I have made this small program, which I could reproduce the issue with:</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; namespace RunTimeBug { class Program { static void Main(string[] args) { var coll = new Collection {{"Test", new Data()}, {"Test2", new Data()}}; var dataSequence = coll.Cast&lt;Data&gt;().ToList(); Console.WriteLine(dataSequence.Count); } } class Collection : Dictionary&lt;string,Data&gt;, IEnumerable&lt;Data&gt; { public new IEnumerator&lt;Data&gt; GetEnumerator() { foreach(var v in Values) yield return v; } } class Data { } } </code></pre> <p>When running on my machine, this code prints "2". When running on the production server, it fails with the following exception:</p> <pre><code>Unhandled Exception: System.InvalidCastException: Unable to cast object of type 'System.Collections.Generic.KeyValuePair `2[System.String,RunTimeBug.Data]' to type 'RunTimeBug.Data'. at System.Linq.Enumerable.&lt;CastIterator&gt;d__b0`1.MoveNext() at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source) at RunTimeBug.Program.Main(String[] args) </code></pre> <p>The only difference I can find on these machines, is that the CLR Runtime is version 2.0.50727.4927 on machines, where it works, and version 2.0.50727.1433 on machines where it does not work.</p> <p>As far as I can tell, the Cast extension method gets the wrong version of IEnumerable on the older machines, but the "right" one on newer machines.</p> <p>Can anyone explain why I am seeing this ? What has changed between the 2 CLR Runtime versions, that might be causing this ?</p> <p>Please note, I have already deployed a fix, and I am aware that the Collection class in the code above is poor design because it implements 2 different IEnumerable's. This was found "in the wild" in our product, so I would really like to know the exact cause.</p> http://stackoverflow.com/questions/1827102/managed-c-to-form-a-bridge-between-c-and-c 2 Managed C++ to form a bridge between c# and C++ PSU_Kardi 2009-12-01T15:55:50Z 2009-12-01T17:09:56Z <p>I'm a bit rusty, actually really rusty with my C++. Haven't touched it since Freshman year of college so it's been a while.</p> <p>Anyway, I'm doing the reverse of what most people do. Calling C# code from C++. I've done some research online and it seems like I need to create some managed C++ to form a bridge. Use __declspec(dllexport) and then create a dll from that and use the whole thing as a wrapper.</p> <p>But my problem is - I'm really having a hard time finding examples. I found some basic stuff where someone wanted to use the C# version to String.ToUpper() but that was VERY basic and was only a small code snippet.</p> <p>Anyone have any ideas of where I can look for something a bit more concrete? Note, I do NOT want to use COM. The goal is to not touch the C# code at all.</p> http://stackoverflow.com/questions/1826688/get-current-net-clr-version-at-runtime 2 Get Current .NET CLR version at runtime ? driis 2009-12-01T14:52:13Z 2009-12-01T14:56:01Z <p>How can I get the current CLR Runtime version in a running .NET program ?</p> http://stackoverflow.com/questions/1811048/how-does-parrot-compare-to-other-virtual-machines 7 How does Parrot compare to other virtual machines? knorv 2009-11-27T23:54:40Z 2009-12-01T13:00:38Z <p>Parrot is the virtual machine originally designed for Perl 6.</p> <p>What technical capabilities does the Parrot VM offer that competing virtual machines such as the <a href="http://en.wikipedia.org/wiki/Java_virtual_machine" rel="nofollow">Java Virtual Machine (JVM)</a>/<a href="http://en.wikipedia.org/wiki/HotSpot_(Java)" rel="nofollow">Hotspot VM</a> and <a href="http://en.wikipedia.org/wiki/Common_Language_Runtime" rel="nofollow">Common Language Runtime (CLR)</a> lack?</p> http://stackoverflow.com/questions/1816564/shoud-i-use-layoutkind-auto-for-my-structs-if-they-dont-perform-in-com-interop 1 Shoud I use LayoutKind.Auto for my structs if they don't perform in COM Interop? Ivan Zlatanov 2009-11-29T19:53:40Z 2009-11-30T12:48:45Z <p>By default <strong>structs</strong> in C# are implemented with <code>[StructLayout( LayoutKind.Sequential )]</code> for reasons basically stating that these type of objects are commonly used for COM Interop and their fields must stay in the order they were defined. Classes have <code>LayoutKind.Auto</code> defined.</p> <p>My question is should I explicitly state my structs as <code>[StructLayout( LayoutKind.Auto )]</code> and would this give me any benefits over the default? I mean that if structs are initialized on <strong>stack</strong>, will it make any difference - i.e. the <strong>GC</strong> doesn't have to move them around? Also will it help when structs are initialized on the heap - i.e. are part of some class?</p> http://stackoverflow.com/questions/1817488/is-it-more-efficient-to-call-the-net-garbage-collector 0 Is it more efficient to call the .net Garbage collector? Euclid 2009-11-30T01:41:24Z 2009-11-30T01:53:40Z <p>Due to the overhead of calling the garbage collector in the CLR, is it more efficient to leave it, or force to garbage collection when objects go out of scope? </p> http://stackoverflow.com/questions/686412/c-is-operator-performance 5 C# 'is' operator performance. JubJub 2009-03-26T16:04:52Z 2009-11-29T23:39:01Z <p>I have a program that requires fast performance. Within one of its inner loops, I need to test the type of an object to see whether it inherits from a certain interface.</p> <p>One way to do this would be with the CLR's built-in type-checking functionality. The most elegant method there probably being the 'is' keyword:</p> <pre><code>if (obj is ISpecialType) </code></pre> <p>Another approach would be to give the base class my own virtual GetType() function which returns a pre-defined enum value (in my case, actually, i only need a bool). That method would be fast, but less elegant.</p> <p>I have heard that there is an IL instruction specifically for the 'is' keyword, but that doesn't mean it executes fast when translated into native assembly. Can anyone share some insight into the performance of 'is' versus the other method?</p> <p><strong>UPDATE:</strong> Thanks for all the informed answers! It seem a couple helpful points are spread out among the answers: Andrew's point about 'is' automatically performing a cast is essential, but the performance data gathered by Binary Worrier and Ian is also extremely useful. It would be great if one of the answers were edited to include <em>all</em> of this information.</p> http://stackoverflow.com/questions/1778878/converting-net-app-to-x86-native-code 1 Converting .NET App to x86 native code Vladimir 2009-11-22T14:42:33Z 2009-11-28T15:32:57Z <p>There's a program written entirely in C# that targets .NET Framework 2.0. Is there a way I could somehow compile (translate) managed EXE to a native one so it could be .NET-agnostic? I know there are probably commercial products for that purpose... but they are a bit expensive.</p> <p>The problem is that we are to deploy the program on computers running Windows XP with no .NET Framework installed. There's also a requirement that the program's size must not exceed 500Kb (1Mb maximum) for it is downloaded from the web server (now the size is 255Kb). That is why there's no way we could attach a full-fledged .NET FX (or even a reduced one) to the downloaded program's file.</p> <p>Obviously it is a terrible software engineering error that should have been detected and avoided earlier so we could use native technologies like C++ instead.</p> <p>We have tried for now Novell's Mono - an open-source implementation of .NET Framework for Linux, MAC and Windows. Mono consists of C# Compiler, IDE, runtime (CLR) and Class Library assemblies (like System.dll and mscorlib.dll - much like .NET's class library assemblies installed to GAC). What we tried to do is to locate CLR files and ship those along with our program's file and a few assemblies. This way the program can be invoked by running "mono program.exe" (command prompt) on a user's computer. In addition to the inconvenience of such a use for the end user CLR files (mono.exe and mono.dll) turned out to be about 2.5 Mb in total that is much greater than the desired 500 Kb or even 1 Mb.</p> <p>So, we have left with no other option but to translate our .NET App to a native one by a compiler, however the question remains - what compiler should we use and where could we find one...</p> <p>For now I have stumbled upon a Singularity OS Project by Microsoft Research. It is an open-source research OS that is written in managed code (in part at least). The Singularity OS includes a Bartok compiler that the OS uses in order to translate a managed program to a native one (x86 32 bit). It should be noted that Bartok can't translate all the aspects of .NET 2.0 to a native code, but most of them. However I haven't yet learnt how to use the Singularity...</p> <p>I would be really grateful to you if you could provide me with some useful tips and advice regarding the problem, your own experience with Singularity OS and Bartok Compiler or another approaches to the problem that I have overlooked and ways of solving it.</p> <p>Thank you very much in advance! </p> <p>Finally, using Mono's Full AOT feature (on Callum Rogers' advice) I've managed to produce a program.exe.dll that lacks a CLI header. So it looks to me like a native dll. However I can't figure out how to convert that dll into exe or make it operational. Also this dll doesn't seem to expose any functions of interest such as main function.</p> http://stackoverflow.com/questions/925540/how-to-resolve-the-following-linker-errors-in-visual-studio 0 How to resolve the following linker errors in Visual Studio? Cute 2009-05-29T11:24:06Z 2009-11-28T01:43:45Z <p>Here is My scenario. I have a project which contains 30 subprojects. In one of the projects I have used CLR (common language runtime) so I modified its runtime with /mdd (multi threaded debug DLL).</p> <p>Individually all the projects are built successfully. But when I try to compile the main project I am getting the following linker errors:</p> <pre><code>LINK : warning LNK4098: defaultlib 'MSVCRTD' conflicts with use of other libs; use /NODEFAULTLIB:library LIBCMTD.lib(winxfltr.obj) : error LNK2005: __XcptFilter already defined in MSVCRTD.lib(MSVCR80D.dll) LIBCMTD.lib(invarg.obj) : error LNK2005: __invalid_parameter already defined in MSVCRTD.lib(MSVCR80D.dll) LIBCMTD.lib(invarg.obj) : error LNK2005: __invoke_watson already defined in MSVCRTD.lib(MSVCR80D.dll) LIBCMTD.lib(crt0.obj) : error LNK2005: _mainCRTStartup already defined in MSVCRTD.lib(crtexe.obj) LIBCMTD.lib(fclose.obj) : error LNK2005: _fclose already defined in MSVCRTD.lib(MSVCR80D.dll) LIBCMTD.lib(printf.obj) : error LNK2005: _printf already defined in MSVCRTD.lib(MSVCR80D.dll) LIBCMTD.lib(mbstowcs.obj) : error LNK2005: _mbstowcs already defined in MSVCRTD.lib(MSVCR80D.dll) LIBCMTD.lib(dbgrptw.obj) : error LNK2005: __CrtDbgReportW already defined in MSVCRTD.lib(MSVCR80D.dll) LIBCMTD.lib(wcstombs.obj) : error LNK2005: _wcstombs already defined in MSVCRTD.lib(MSVCR80D.dll) LIBCMTD.lib(tzset.obj) : error LNK2005: __tzset already defined in MSVCRTD.lib(MSVCR80D.dll) LIBCMTD.lib(stricmp.obj) : error LNK2005: __stricmp already defined in MSVCRTD.lib(MSVCR80D.dll) </code></pre> <p>How to resolve these all?</p> http://stackoverflow.com/questions/1809470/clr-internals-rotor-shared-source-cli-2-0-book-release-date 0 CLR internals / Rotor / Shared Source CLI 2.0 Book release date? Ian Gibson 2009-11-27T15:51:31Z 2009-11-27T17:42:35Z <p>Is anyone aware of if/when this will actually be released as hard/soft back? A draft can be downloaded from Ted Newards <a href="http://blogs.tedneward.com/2009/05/27/SSCLI+20+Internals.aspx" rel="nofollow">blog</a> but I can't seem to find anything relating to a release date.</p> http://stackoverflow.com/questions/1182782/c-structlayout-explicit-question 2 C# StructLayout.Explicit Question Taylor L 2009-07-25T19:05:28Z 2009-11-27T07:35:36Z <p>I'm trying to understand why the second example below works with no issues, but the first example gives me the exception below. It seems to me that both examples should give an exception based on the description. Can anyone enlighten me?</p> <blockquote> <p>Unhandled Exception: System.TypeLoadException: Could not load type 'StructTest.OuterType' from assembly 'StructTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' because it contains an object field at offset 0 that is incorrectly aligned or overlapped by a non-object field.<br /> at StructTest.Program.Main(String[] args) Press any key to continue . . .</p> </blockquote> <p><strong>Example 1</strong></p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; namespace StructTest { [StructLayout(LayoutKind.Sequential, Pack = 1)] struct InnerType { [MarshalAs(UnmanagedType.ByValArray, SizeConst = 100)] char[] buffer; } [StructLayout(LayoutKind.Explicit)] struct OuterType { [FieldOffset(0)] int someValue; [FieldOffset(0)] InnerType someOtherValue; } class Program { static void Main(string[] args) { OuterType t = new OuterType(); System.Console.WriteLine(t); } } } </code></pre> <p><hr /></p> <p><strong>Example 2</strong></p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; namespace StructTest { [StructLayout(LayoutKind.Sequential, Pack = 1)] struct InnerType { [MarshalAs(UnmanagedType.ByValArray, SizeConst = 100)] char[] buffer; } [StructLayout(LayoutKind.Explicit)] struct OuterType { [FieldOffset(4)] private int someValue; [FieldOffset(0)] InnerType someOtherValue; } class Program { static void Main(string[] args) { OuterType t = new OuterType(); System.Console.WriteLine(t); } } } </code></pre> http://stackoverflow.com/questions/1803831/is-it-possible-to-clone-a-valuetype 5 Is it possible to clone a ValueType? Ian Quigley 2009-11-26T14:01:32Z 2009-11-26T15:04:02Z <p>Is it possible to clone an object, when it's known to be a boxed ValueType, without writing type specific clone code?</p> <p>Some code for reference</p> <pre><code>List&lt;ValueType&gt; values = new List&lt;ValueType&gt; {3, DateTime.Now, 23.4M}; DuplicateLastItem(values); </code></pre> <p>The partical issue I have is with a value stack based virtual instruction machine. (And Im too lazy to write typeof(int) typeof(DateTime)....)</p> <p><strong>update</strong> I think I confused myself (and a few other people). The working solution I have is;</p> <pre><code>List&lt;ValueType&gt; values = new List&lt;ValueType&gt; { 3, DateTime.Now, 23.4M }; // Clone values.Add(values[values.Count() - 1]); // Overwrite original values[2] = 'p'; foreach (ValueType val in values) Console.WriteLine(val.ToString()); </code></pre> http://stackoverflow.com/questions/1800946/is-it-possible-to-reload-the-clr 1 Is it possible to reload the CLR? JoshRivers 2009-11-26T00:39:26Z 2009-11-26T14:53:52Z <p>I'm fiddling with a project where the CLR is hosted within a C application. Is there a supported way to unlink the CLR and relaunch it?</p> http://stackoverflow.com/questions/716983/have-you-ever-used-ngen-exe 9 Have you ever used ngen.exe? Yassir 2009-04-04T12:20:59Z 2009-11-26T14:15:28Z <p>Has anybody here ever used ngen? Where? why? Was there any performance improvement? when and where does it make sense to use it?</p> http://stackoverflow.com/questions/1801113/clear-the-clr-memory 1 Clear the CLR memory Mark 2009-11-26T01:39:20Z 2009-11-26T06:18:02Z <p>Im running into a problem where the tool im using for development (a simulator tool) keeps throwing OutofMemoryException's, I know its not my app, because no matter what project im running, it happens.</p> <p>The only fix I have for it so far is to restart my PC, is there a way to flush/clear the CLR runtime so I dont have to restart my PC each time it happens?</p> http://stackoverflow.com/questions/1791471/sql-clr-stored-procedure-relative-path-for-dllimport 0 SQL CLR Stored Procedure - Relative path for DllImport? Brian 2009-11-24T17:04:57Z 2009-11-24T17:18:09Z <p>I have a C# project consisting of stored procedures that reference a win32 dll from another project in the solution. Currently, dllimport is using absolute paths to reference it. If I use a relative path instead, where is that path relative <em>to</em> once the clr stored procs assembly is loaded in sql server?</p>