| Thread | Last Post | Replies |
|
| which IL OpCodes call a method | 26 Dec 2007 20:38 GMT | 10 |
...using framework 1.0 / 1.1/ 2.0, Mono.Cecil library for introspection I am new to all this fancy smancy IL stuff, so please hold the slaps if this is obvious...and feel free to point me to "good" and "clear" documention if that would answer my question.
|
| interrupting flow of a function and/or yielding control | 26 Dec 2007 20:35 GMT | 6 |
I am trying to build a workflow system for database detection that needs to perform thousands of detections in parallel. Most of the time the detectors sit waiting on network IO to do something. The actual detector code is fairly thick, with a third party implementing the
|
| Access subclass attributes from base | 24 Dec 2007 19:24 GMT | 5 |
Using the 2.0 framework, I'm trying to flesh out an idea that I had for a generic factory using an attribute to specify the type of concrete class that will be implemented. Our base factory does all the work and looks like this: abstract BaseFactory<TInterface, ...
|
| I have a CLR function thet returns IEnumberable (a table) and it has a FillRow function. I am returning 10,000 integers from this function. Is there any way that I can preallocate the resulting table or give SQL server hint as to how many rows my function | 21 Dec 2007 18:27 GMT | 1 |
I have a CLR function thet returns IEnumberable (a table) and it has a FillRow function. I am returning 10,000 integers from this function. Is there any way that I can preallocate the resulting table or give SQL server hint as to how many rows my function will return? It makes me ...
|
| IL .override question | 21 Dec 2007 18:24 GMT | 1 |
I'm trying to resolve an issue where my application doesn't run after obsfucation using dotfuscator. I'm looking at the IL output from dotfuscator using reflector, and have a query..
|
| Changing an assembly identity without recompiling | 21 Dec 2007 18:19 GMT | 1 |
I have a certain assembly a.dll with a certain identity (Name, Version). Is it possible to alter the identity of the assembly without recompiling the actual assembly code?
|
| Generics - How to ctype an instance of a generic class to something that I can use | 19 Dec 2007 12:52 GMT | 5 |
I hope someone out there can help me with this, because I am stuck. My problem is that I have an instance of a generic class, but I don't know ahead of time what the type parameter used was. In my case the type must derive from a class, like UserControl, so I at least know I ...
|
| Difference with using between 1.1 and 2.0? | 17 Dec 2007 09:51 GMT | 8 |
Hi... I'm digging through some old legacy code that was written originally for .net 1.1. It's looking for some registry entries to assemble a Sql connection string. It wraps the registry lookup with using.
|
| Thread-safety guarantees for basic ops | 12 Dec 2007 18:37 GMT | 4 |
When thinking about thread-safety I've been assuming that the following are automatically thread-safe without the need for any explicit locking by the programmer: - Reading a reference value
|
| Getting the Type of a Generic Parameter | 11 Dec 2007 15:12 GMT | 6 |
I need to figure out how to get the type of a generic parameter in order to create an instance of this generic type using Activator.CreateInstance(). While there's Activator.CreateInstance<T>() that works with a generic parameter, it doesn't accept parameters for constructors, so ...
|
| DocumentComplete event failed to fire in different version of SHDOCVW.DLL | 05 Dec 2007 20:30 GMT | 2 |
I wrote a Windows Form application that hosts WebBrowser control, and I want to handle the DocumentComplete event in C# code. It works fine on my development computer, but the WebBrowser control failed to fire the DocumentComplete event while run on another computer.
|
| Generics Question | 04 Dec 2007 18:49 GMT | 22 |
1. Although I get the relative simplicity of Generics over using interfaces is it true that I *could* do what Generics offers with interfaces?
|
| How To Avoids CLR GC operation | 04 Dec 2007 18:47 GMT | 7 |
Hello; I am trying to write a c# .net code where no GC un-timed memory operation. the purpose of which is to allow the code to be responsive in real time as possible.
|
| Experience hosting the CLR from native c++ ? | 03 Dec 2007 18:09 GMT | 4 |
I am trying to find good information on hosting the CLR from my native c++ program. I'm successfully using CorBindToRuntimeEx to host the CLR and executing functions in a test CLR assembly using ExecuteInDefaultAppDomain. That's all great, but my problem is that the execute ...
|
| How to use file I/o codes with forms and controls codes | 03 Dec 2007 16:59 GMT | 1 |
I would appreciate it if you can give me a hand here. I want to use the two codes, below, together to do the following when the "IN" button is clicked (InBtn_Click):- 1- Create (or open) output.txt, and
|