User Romain Verdier - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T03:26:34Z http://stackoverflow.com/feeds/user/4687 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1901541/children-controls-are-inaccessible-due-to-access-modifier/1901608#1901608 3 Answer by Romain Verdier for Children Controls Are Inaccessible Due to Access Modifier Romain Verdier 2009-12-14T15:34:52Z 2009-12-14T15:34:52Z <p>Have you tried to set the <a href="http://msdn.microsoft.com/en-us/library/aa970905.aspx" rel="nofollow"><code>x:FieldModifier</code></a> attribute of your children controls to "<code>public</code>"?</p> http://stackoverflow.com/questions/138367/most-wanted-feature-for-c-4-0 72 Most wanted feature for C# 4.0 ? Romain Verdier 2008-09-26T08:59:18Z 2009-12-12T15:43:31Z <p>Some blogs on the Internet give us several clues of what C# 4.0 would be made of. I would like to know what do you really want to see in C# 4.0.</p> <p>Here are some related articles:</p> <ul> <li><a href="http://msmvps.com/blogs/jon%5Fskeet/archive/tags/C%5F2300%5F%2B4/default.aspx" rel="nofollow">C# 4 tag on Jon Skeet's blog</a></li> <li><a href="http://anastasiosyal.com/archive/2008/07/19/4-features-for-c-4.0.aspx" rel="nofollow">4 features for C# 4</a></li> <li><a href="http://codebetter.com/blogs/jeremy.miller/archive/2007/11/25/what-do-you-want-in-c-vnext.aspx" rel="nofollow">What do you want in C# 4</a></li> <li><a href="http://blogs.msdn.com/charlie/archive/2008/01/25/future-focus.aspx" rel="nofollow">Future Focus - I: Dynamic Lookup</a></li> <li><a href="http://evain.net/blog/articles/2008/07/29/net-4-c-4-and-the-dlr" rel="nofollow">.NET 4, C# 4 and the DLR</a></li> </ul> <p>Channel 9 also hosts a <a href="http://channel9.msdn.com/posts/Charles/C-40-Meet-the-Design-Team/" rel="nofollow">very interesting video</a> where Anders Hejlsberg and the C# 4.0 design team talk about the upcoming version of the language.</p> <p>I'm particularly excited about dynamic lookup and <a href="http://en.wikipedia.org/wiki/Abstract%5Fsyntax%5Ftree" rel="nofollow">AST</a>. I hope we would be able to leverage - at some level - the underlying DLR mechanisms from C#-the-static-language.</p> <p>What about you ?</p> http://stackoverflow.com/questions/1873998/answering-which-method-called-me-at-the-run-time-in-net-or-is-callstack-data/1874017#1874017 1 Answer by Romain Verdier for Answering "Which method called me?" at the run-time in .NET? Or is CallStack data readable by the code? Romain Verdier 2009-12-09T13:48:41Z 2009-12-09T13:48:41Z <p>Yes, the call stack can be read at runtime using <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stacktrace.getframe.aspx" rel="nofollow">StackTrace.Get­Frames</a>.</p> http://stackoverflow.com/questions/1872502/how-to-save-a-dynamically-generated-assembly-that-is-stored-in-memory/1872533#1872533 0 Answer by Romain Verdier for How-to save a dynamically generated assembly that is stored in-memory? Romain Verdier 2009-12-09T09:04:09Z 2009-12-09T09:04:09Z <p>You can use the <a href="http://msdn.microsoft.com/en-us/library/system.reflection.emit.assemblybuilder.save.aspx" rel="nofollow">Save method on AssemblyBuilder</a>.</p> http://stackoverflow.com/questions/1846433/which-controls-are-bound-to-my-dataset/1846560#1846560 2 Answer by Romain Verdier for Which controls are bound to my dataset? Romain Verdier 2009-12-04T12:06:28Z 2009-12-04T12:06:28Z <p>Well I assume you're talking about Winforms controls.</p> <p>Then, on every form, you can access the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.containercontrol.bindingcontext.aspx" rel="nofollow">BindingContext</a> property, that would give you a binding manager from a particular datasource. Once you have this manager, you can access its binding collection and iterating over it.</p> <p>Pseudo code:</p> <pre><code>var bindingManager = BindingContext[myDataSet.Tables[0]]; foreach (Binding binding in bindingManager.Bindings) { var dataGrid = binding.Control as DataGrid; if (dataGrid != null) dataGrid.DataSource = null; } </code></pre> http://stackoverflow.com/questions/1846223/how-should-i-separate-entities-methods/1846322#1846322 3 Answer by Romain Verdier for How should I separate entities methods ? Romain Verdier 2009-12-04T11:15:07Z 2009-12-04T11:15:07Z <p>The logic that describes how an entity should be saved/loaded doesn't belong to the entity itself ; it's more likely to be the role of a persistence service, a data access object, etc.</p> <p>I would let the object specific logic in the object -- we're here talking about the object behavior, then create a service that handles persistence concerns for this object type.</p> http://stackoverflow.com/questions/1839292/just-a-small-mathematics-question/1839320#1839320 5 Answer by Romain Verdier for just a small mathematics question Romain Verdier 2009-12-03T11:22:46Z 2009-12-03T11:22:46Z <p>Are you aware of <a href="http://mathoverflow.net/" rel="nofollow">MathOverflow</a>?</p> http://stackoverflow.com/questions/1829394/multi-level-arraylist-extraction/1829543#1829543 0 Answer by Romain Verdier for Multi Level ArrayList extraction Romain Verdier 2009-12-01T22:57:43Z 2009-12-01T22:57:43Z <p>As an alternative, if you can use generics and iterator blocs then it becomes possible to have a single method:</p> <pre><code> public static IEnumerable&lt;string&gt; GetStrings(ArrayList list) { foreach(var item in list) { var @string = item as string; if (@string != null) yield return @string; var nestedList = item as ArrayList; if(nestedList == null) continue; foreach (var childString in GetStrings(nestedList)) yield return childString; } } </code></pre> http://stackoverflow.com/questions/1706774/where-can-i-find-the-microsoft-net-framework-development-guide/1706798#1706798 6 Answer by Romain Verdier for Where can I find the Microsoft .NET Framework Development Guide? Romain Verdier 2009-11-10T09:58:12Z 2009-11-13T14:49:12Z <p>As you figured out yourself, the article you were originally looking for is called <a href="http://msdn.microsoft.com/en-us/library/ms229042.aspx" rel="nofollow">Design Guidelines for Developing Class Libraries</a> on the MSDN.</p> <p>Note that it also exists a great complete book on the very same topic, named <a href="http://rads.stackoverflow.com/amzn/click/0321545613" rel="nofollow" title="Framework Design guidelines">Framework Design Guidelines</a>. Actually, the MSDN page encourages you to have a look at this book if you want to go deeper:</p> <blockquote> <p>For more information on design guidelines, see the "Framework Design Guidelines: Conventions, Idioms, and Patterns for Reusable .NET Libraries" book by Krzysztof Cwalina and Brad Abrams, published by Addison-Wesley, 2005.</p> </blockquote> <p><img src="http://davesbox.com/images/books/FrameworkDesignGuidelines2ndEditionLarge.jpg" alt="alt text"></p> http://stackoverflow.com/questions/1700401/is-this-is-an-expressiontrees-bug-2/1700465#1700465 3 Answer by Romain Verdier for Is this is an ExpressionTrees bug? #2 Romain Verdier 2009-11-09T11:30:55Z 2009-11-09T11:38:00Z <p>Not a real answer yet, I'm investigating, but the first line is compiled as:</p> <pre><code>Func&lt;decimal, ConsoleColor&gt; converter1 = x =&gt; (ConsoleColor)(int)x; </code></pre> <p>If you try to create an expression from the previous lambda, it will work.</p> <p>EDIT : In the C# spec, §6.2.2, you can read:</p> <blockquote> <p>An explicit enumeration conversion between two types is processed by treating any participating enum-type as the underlying type of that enum-type, and then performing an implicit or explicit numeric conversion between the resulting types. For example, given an enum-type E with and underlying type of int, a conversion from E to byte is processed as an explicit numeric conversion (§6.2.1) from int to byte, and a conversion from byte to E is processed as an implicit numeric conversion (§6.1.2) from byte to int.</p> </blockquote> <p>So explicit casts from enum to decimal are handled specifically, that's why you get the nested casts (int then decimal). But I can't see why the compiler doesn't parse the lambda body the same way in both cases.</p> http://stackoverflow.com/questions/1613171/how-should-i-write-a-findclosestmatching-function/1613300#1613300 0 Answer by Romain Verdier for How should I write a FindClosestMatching function? Romain Verdier 2009-10-23T13:07:04Z 2009-10-23T13:07:04Z <pre><code>return (from f in AllFoos() where matches(f) orderby f.Center.Dist(pos) select f).FirstOrDefault(); </code></pre> <p>Or </p> <pre><code>return AllFoos().Where(matches) .OrderBy(f =&gt; f.Center.Dist(pos)) .FirstOrDefault(); </code></pre> http://stackoverflow.com/questions/1613089/overloading-of-getenumerator/1613128#1613128 1 Answer by Romain Verdier for Overloading of GetEnumerator Romain Verdier 2009-10-23T12:29:28Z 2009-10-23T12:29:28Z <p>You can propose an overload for <code>GetEnumerator</code> method, but it can't be part of the <code>IEnumerable</code> implementation.</p> http://stackoverflow.com/questions/1599867/use-reflection-stub-to-initialize-a-delegate-field-lazily/1600057#1600057 1 Answer by Romain Verdier for Use reflection stub to initialize a delegate field lazily Romain Verdier 2009-10-21T10:48:44Z 2009-10-21T10:48:44Z <p>Yes, it is possible to dynamically generate stubs at runtime, but it is very likely that it will takes more that 300 ms -- we are talking about generating thousands of stubs. And btw, it would requires DynamicMethods or maybe 3.5 Expressions.</p> <p>The best approach would be to generate stubs before compilation. Ideally, the code generator which generates fields should also generate stubs. If you can't modify the existing code generator, you may want to use a template engine, like T4.</p> http://stackoverflow.com/questions/1550740/what-other-alternatives-to-log4net-logging-exist/1550748#1550748 5 Answer by Romain Verdier for What other alternatives to log4net logging exist? Romain Verdier 2009-10-11T13:53:15Z 2009-10-11T13:53:15Z <p><a href="http://www.nlog-project.org/" rel="nofollow">NLog</a> is probably the other big player in this area. Also, There is an <a href="http://msdn.microsoft.com/en-us/library/cc309506.aspx" rel="nofollow">application bloc</a> in entreprise library that is dedicated to tracing and logging.</p> http://stackoverflow.com/questions/1542545/threads-simulation-of-execution-time/1542597#1542597 1 Answer by Romain Verdier for Threads - Simulation of execution time Romain Verdier 2009-10-09T08:38:52Z 2009-10-09T08:38:52Z <p>In every serious logging framework, you can include the thread Id, or the thread name in the output message. If you just want to use the Console, you may have to manually append the current thread id/name to your message.</p> <p>Like so:</p> <pre><code>public static void WriteX() { var sw = Stopwatch.StartNew(); for (int i = 1; i &lt;= 3; i++) { Console.WriteLine("Hello"); Thread.Sleep(1000); } sw.Stop(); Console.WriteLine("{0} {1}", Thread.CurrentThread.ManagedThreadId, sw.Elapsed); } </code></pre> <p>To name a thread, just use the Name property on the thread instance:</p> <pre><code>ThreadStart one = new ThreadStart(WriteX); Thread startOne = new Thread(one); startOne.Name = "StartOne"; //... Console.WriteLine("{0} {1}", Thread.CurrentThread.Name, sw.Elapsed); </code></pre> <p>Also, when the method you pass as <code>ThreadStart</code> constructor argument finishes, the thread ends automatically. Use the <code>Join</code> method if you want to wait for a thread end in the main one.</p> http://stackoverflow.com/questions/1533740/best-aspect-oriented-framework-for-features-build-performances-in-net/1533895#1533895 4 Answer by Romain Verdier for Best Aspect Oriented Framework for features / build performances in .net Romain Verdier 2009-10-07T20:11:12Z 2009-10-08T16:09:06Z <p>PostSharp is a basically a full featured static weaver. That means the weaving takes place during the build process, in a post-compilation step. And for sure, it can takes some time. (Be sure to read Gael announcement about <a href="http://www.postsharp.org/blog/introducing-postsharp-20-2-amazing-runtime-performance-enhancements" rel="nofollow">runtime performance improvements</a> and <a href="http://www.postsharp.org/blog/introducing-postsharp-20-5-build-performance-and-packaging" rel="nofollow">build time performance improvements</a> that will come with the version 2.0)</p> <p>If you don't want any build time overhead, there is only one solution : use dynamic weavers. In .NET, there are several interception frameworks, like <a href="http://www.castleproject.org/dynamicproxy/index.html" rel="nofollow">Castle.DynamicProxy</a>, or <a href="http://code.google.com/p/linfu/" rel="nofollow">Linfu.DynamicProxy</a>. They generate proxies at runtime. Be aware that theses frameworks can't do as much as a static AOP framework like PostSharp can, and may also perform less efficiently at runtime. Very often, IoC frameworks offer dynamic interception capabilities (<a href="http://www.springframework.net/" rel="nofollow">Spring.NET</a>, <a href="http://www.codeplex.com/unity" rel="nofollow">Unity</a>, <a href="http://www.castleproject.org/container/index.html" rel="nofollow">Windsor</a>, etc.)</p> <p>One other solution is to look at hybrid weavers, which only weaves join points during the build process, in a static manner, and then allow you to apply aspect dynamically at runtime. <a href="http://code.google.com/p/linfu/" rel="nofollow">Linfu.AOP</a>, which uses <a href="http://www.mono-project.com/Cecil" rel="nofollow">Mono.Cecil</a> as a backend, works like that.</p> http://stackoverflow.com/questions/1533279/why-idatasource-interface-exists-for-asp-net-and-not-for-winform/1533387#1533387 1 Answer by Romain Verdier for Why IDataSource Interface exists for ASP.NET and not for Winform ? Romain Verdier 2009-10-07T18:34:26Z 2009-10-07T18:34:26Z <p>Having a property of type object allows you to set anything as a data source. Then, the <code>BindingSource</code> is responsible of the transformation. It's only a convenience matter. </p> <p>From the page you link in you question, if you set to the property:</p> <ul> <li><p>a null reference, the data source will be an empty <code>IBindingList</code> of objects. Adding an item sets the list to the type of the added item.</p></li> <li><p>a non-list type or object of type "T", you'll get an empty <code>IBindingList</code> of type "T".</p></li> <li><p>an array instance, and it will be a <code>IBindingList</code> containing the array elements.</p></li> <li><p>an <code>IEnumerable</code> instance will be transformed into an <code>IBindingList</code> containing the <code>IEnumerable</code> items.</p></li> <li><p>a List instance containing type "T", and the data source will be an <code>IBindingList</code> instance containing type "T".</p></li> </ul> <p>It seems less safe, since it's not strongly typed, but it appears to be pretty handy.</p> http://stackoverflow.com/questions/1531702/findall-vs-where-extension-method/1531737#1531737 2 Answer by Romain Verdier for FindAll vs Where extension-method Romain Verdier 2009-10-07T13:45:18Z 2009-10-07T14:04:42Z <p>Well, at least you can try to measure it. </p> <p>The static <code>Where</code> method is implemented using an iterator bloc (<code>yield</code> keyword), which basically means that the execution will be deferred. If you only compare the calls to theses two methods, the first one will be slower, since it immediately implies that the whole collection will be iterated. </p> <p>But if you include the complete iteration of the results you get, things can be a bit different. I'm pretty sure the <code>yield</code> solution is slower, due to the generated state machine mechanism it implies. (see @Matthew anwser)</p> http://stackoverflow.com/questions/1524967/net-attachable-profiler/1524983#1524983 1 Answer by Romain Verdier for .NET Attachable Profiler Romain Verdier 2009-10-06T11:15:42Z 2009-10-06T11:15:42Z <p>You can use <a href="http://www.microsoft.com/whdc/DevTools/Debugging/default.mspx" rel="nofollow">windbg</a> + <a href="http://msdn.microsoft.com/en-us/library/bb190764.aspx" rel="nofollow">sos extension</a> as well. It can be attached to a process.</p> http://stackoverflow.com/questions/1498162/c-ilgenerator-nop/1498189#1498189 1 Answer by Romain Verdier for c# ILGenerator nop? Romain Verdier 2009-09-30T13:38:08Z 2009-09-30T13:38:08Z <p>Compile in release mode to get rid of the nop opcodes.</p> http://stackoverflow.com/questions/1491343/c-class-methods-only-callable-from-certain-projects/1491370#1491370 1 Answer by Romain Verdier for C# Class Methods Only Callable from certain Projects? Romain Verdier 2009-09-29T08:56:23Z 2009-09-29T08:56:23Z <p>You can use <a href="http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.internalsvisibletoattribute.aspx" rel="nofollow"><code>InternalVisibleTo</code></a> attribute, and mark the methods for which you want to restrict access <code>internal</code>.</p> <p>Note : In your case, I would not use this. I would prefer rethink the design. It seems a bit odd that your domain objects are located in a "data access project". Why don't you have a UI project, a Logic project, a Data access project and a Model project?</p> http://stackoverflow.com/questions/1491334/is-there-a-listt-in-net-2-that-raises-events-when-the-list-changes/1491342#1491342 11 Answer by Romain Verdier for Is there a List<T> in .NET 2 that raises events when the list changes? Romain Verdier 2009-09-29T08:50:05Z 2009-09-29T08:50:05Z <p><a href="http://msdn.microsoft.com/en-us/library/ms132679.aspx" rel="nofollow"><code>BindingList&lt;T&gt;</code></a></p> http://stackoverflow.com/questions/1490385/good-quality-c-code/1491139#1491139 2 Answer by Romain Verdier for Good Quality C# code Romain Verdier 2009-09-29T07:58:38Z 2009-09-29T07:58:38Z <p>You can have a look at the <a href="http://ftp.novell.com/pub/mono/sources-stable/" rel="nofollow">Mono project source code</a>.</p> http://stackoverflow.com/questions/1471927/find-references-to-the-object-in-runtime/1471984#1471984 1 Answer by Romain Verdier for Find references to the object in runtime Romain Verdier 2009-09-24T14:15:28Z 2009-09-24T14:15:28Z <p>You'll have to use <a href="http://www.microsoft.com/whdc/DevTools/Debugging/default.mspx" rel="nofollow">Windbg</a> and <a href="http://www.stevestechspot.com/SOSEXV2NowAvailable.aspx" rel="nofollow">Sosex</a> extension.</p> <p>The <code>!DumpHeap</code> and <code>!GCRoot</code> commands can help you to identify the instance, and all remaining references that keep it alive.</p> http://stackoverflow.com/questions/1470612/dymanic-controls-c-accessing-without-name-property/1470635#1470635 0 Answer by Romain Verdier for Dymanic Controls C# Accessing without Name property Romain Verdier 2009-09-24T09:28:34Z 2009-09-24T09:28:34Z <p>Maybe you can just keep a reference (e.g. instance field, within a dictionary, etc.) to each dynamically added control, and use this when you'll need to access the controls later.</p> http://stackoverflow.com/questions/1411372/how-to-get-the-type-for-a-class-by-sending-just-the-name-of-the-class-instead-of/1411398#1411398 3 Answer by Romain Verdier for How to get the type for a class by sending just the name of the class instead of the class itself as the parameter? Romain Verdier 2009-09-11T14:55:38Z 2009-09-11T14:55:38Z <pre><code>Type.GetType("class1") </code></pre> http://stackoverflow.com/questions/1400317/is-it-possible-to-detect-class-context-in-an-inherited-static-method/1400350#1400350 10 Answer by Romain Verdier for Is it possible to detect class context in an inherited static method? Romain Verdier 2009-09-09T15:16:51Z 2009-09-09T15:31:52Z <p>You can make the Animal class generic.</p> <pre><code>class Animal&lt;T&gt; where T : Animal&lt;T&gt; { public static T Create() { // Don't know what you'll be able to do here } } class Dog : Animal&lt;Dog&gt; { } </code></pre> <p>But how the <code>Animal</code> class knows how to create instances of derived types?</p> http://stackoverflow.com/questions/1399884/compilation-error-with-generic-type-t-when-passed-to-a-function-twice/1399961#1399961 5 Answer by Romain Verdier for Compilation Error with Generic Type T when passed to a function twice Romain Verdier 2009-09-09T14:14:17Z 2009-09-09T15:02:45Z <p>According to <code>IBase</code> interface, <code>GetChildren</code> method always returns <code>IBase</code> instances, not <code>T</code> instances. You have a constraint on <code>T</code>, which forces each <code>T</code> to implement <code>IBase</code>, but everything that implements <code>IBase</code> can't be of type <code>T</code>.</p> <p>Note that a simple solution should be to make <code>IBase</code> generic, and to declare <code>Foo</code> like that:</p> <pre><code>class Foo : IBase&lt;Foo&gt; { /*...*/ } </code></pre> <p>EDIT :</p> <p>The <code>Consume2</code> methods works just fine because the <code>T</code> parameter type in the inner <code>Consume2</code> method is inferred as being <code>IBase</code>, not <code>Foo</code>.</p> <pre><code>public void Test() { Method1(new Foo("lol")); // Same as // Method1&lt;Foo&gt;(new Foo("lol")); } public void Method1&lt;T&gt;(T parent) where T : IBase { Method1(parent.GetChildren()); // Same as : // Method1&lt;IBase&gt;(parent.GetChildren()); // since GetChildren() returns IEnumerable&lt;IBase&gt;, not IEnumerable&lt;Foo&gt; } public void Method1&lt;T&gt;(IEnumerable&lt;T&gt; children) where T : IBase { } </code></pre> http://stackoverflow.com/questions/1394697/what-is-the-equivalent-of-container-getallinstancest-in-ninject/1394758#1394758 3 Answer by Romain Verdier for What is the equivalent of Container.GetAllInstances<T> in NInject? Romain Verdier 2009-09-08T15:48:40Z 2009-09-08T15:48:40Z <p>Answer from Nate:</p> <blockquote> <p>Multi-resolution (via <code>GetAll</code>) is currently not polymorphic. That means that it will only consider bindings from the exact interface you specify. If you do this:</p> <pre><code>kernel.Bind&lt;IWorker&gt;().To&lt;WorkerA&gt;(); kernel.Bind&lt;IWorker&gt;().To&lt;WorkerB&gt;(); kernel.Bind&lt;IWorker&gt;().To&lt;WorkerC&gt;(); </code></pre> <p>And then:</p> <pre><code>kernel.GetAll&lt;IWorker&gt;(); </code></pre> <p>It will return 3 items. However, even if <code>IWorkerA</code>, <code>IWorkerB</code>, and <code>IWorkerC</code> implement <code>IWorker</code>, Ninject will not look at bindings from <code>IWorkerA</code> to <code>WorkerA</code> when you ask for <code>IWorker</code>.</p> </blockquote> <p>See :</p> <p><a href="http://groups.google.com/group/ninject/browse%5Fthread/thread/7b6afa06099bc97a#" rel="nofollow">http://groups.google.com/group/ninject/browse%5Fthread/thread/7b6afa06099bc97a#</a></p> http://stackoverflow.com/questions/1394695/c-property-clarification/1394722#1394722 2 Answer by Romain Verdier for C# - Property Clarification Romain Verdier 2009-09-08T15:40:07Z 2009-09-08T15:40:07Z <blockquote> <p>My question is still property needs some storage location</p> </blockquote> <p>That is not true. You can do whatever you want in getters/setters. By declaring a property in an interface, you just force implementers to provide a getter and/or a setter.</p> http://stackoverflow.com/questions/1872502/how-to-save-a-dynamically-generated-assembly-that-is-stored-in-memory/1872533#1872533 Comment by Romain Verdier on How-to save a dynamically generated assembly that is stored in-memory? Romain Verdier 2009-12-09T13:29:27Z 2009-12-09T13:29:27Z @Daniel: What do you mean by &quot;InternalAssemblyBuilder&quot;? Is that a custom type of yours? Of the 3rd party library? What does it look like then? http://stackoverflow.com/questions/1872502/how-to-save-a-dynamically-generated-assembly-that-is-stored-in-memory/1872533#1872533 Comment by Romain Verdier on How-to save a dynamically generated assembly that is stored in-memory? Romain Verdier 2009-12-09T09:17:47Z 2009-12-09T09:17:47Z Assembly saving is so funny! But obviously you're right -- if Daniel has an Assembly instance AssemblyBuilder won't be very usefull :) http://stackoverflow.com/questions/1846433/which-controls-are-bound-to-my-dataset/1846560#1846560 Comment by Romain Verdier on Which controls are bound to my dataset? Romain Verdier 2009-12-04T13:33:47Z 2009-12-04T13:33:47Z So I'm afraid you can't do that, unless you manually implement some sort of tracking system... http://stackoverflow.com/questions/1846223/how-should-i-separate-entities-methods/1846322#1846322 Comment by Romain Verdier on How should I separate entities methods ? Romain Verdier 2009-12-04T11:46:49Z 2009-12-04T11:46:49Z I think you're mixing different concepts here. Consider that the service you're talking about is <i>one component</i> of your SOA architecture. It's a granularity matter : this component has it's own design. When I'm talking about a persistence service, I'm not talking about another high level independent service of your SOA ecosystem -- I'm talking about a possible inner component of your existing service. The &quot;persistence service&quot; can be a simple class. Read &quot;data access object&quot; if you prefer. http://stackoverflow.com/questions/1839292/just-a-small-mathematics-question/1839320#1839320 Comment by Romain Verdier on just a small mathematics question Romain Verdier 2009-12-03T13:10:49Z 2009-12-03T13:10:49Z @Moayad: You're right. So you may want to downvote me. http://stackoverflow.com/questions/1832293/c-scripting-language Comment by Romain Verdier on C# Scripting language Romain Verdier 2009-12-02T11:27:37Z 2009-12-02T11:27:37Z Actually, Reflection.Emit doesn't allow you to <b>compile</b> C# code. Are you talking about CodeDOM? http://stackoverflow.com/questions/1832159/when-is-it-better-practice-to-explicitly-use-the-delegate-keyword-instead-of-a-la/1832193#1832193 Comment by Romain Verdier on When is it better practice to explicitly use the delegate keyword instead of a lambda? Romain Verdier 2009-12-02T11:25:30Z 2009-12-02T11:25:30Z @Mark: The lambda can't be used in this case. You can't <b>ignore</b> parameters like it's possible with the delegate syntax, so you always need to provide a lambda with a matching signature. Here, for EventHandler, it must be (sender, e) =&gt; {} http://stackoverflow.com/questions/1829394/multi-level-arraylist-extraction/1829409#1829409 Comment by Romain Verdier on Multi Level ArrayList extraction Romain Verdier 2009-12-01T22:36:18Z 2009-12-01T22:36:18Z You may want to use 'as' instead of 'is' + cast. http://stackoverflow.com/questions/1825729/limitations-of-cab Comment by Romain Verdier on Limitations of CAB Romain Verdier 2009-12-01T12:06:36Z 2009-12-01T12:06:36Z What is your question? http://stackoverflow.com/questions/1435474/how-can-i-get-fields-used-in-a-method-net/1440424#1440424 Comment by Romain Verdier on How can I get fields used in a method (.NET) ? Romain Verdier 2009-11-30T22:10:31Z 2009-11-30T22:10:31Z Looks like you're all trying to reinvent the wheel here. Writing a bugfree CIL Reader is far from being an easy task. Hopefully, as Jb Evain stated, what you're trying to achieve is possible leveraging existing libraries : ILReader, Mono.Cecil, etc. http://stackoverflow.com/questions/1706774/where-can-i-find-the-microsoft-net-framework-development-guide/1706798#1706798 Comment by Romain Verdier on Where can I find the Microsoft .NET Framework Development Guide? Romain Verdier 2009-11-11T18:55:17Z 2009-11-11T18:55:17Z The relationship? Well the topic is the same, authors are likely the same. The article on the MSDN is a light version of the book. Many portions of the MSDN article come from the book actually. http://stackoverflow.com/questions/1700401/is-this-is-an-expressiontrees-bug-2/1700465#1700465 Comment by Romain Verdier on Is this is an ExpressionTrees bug? #2 Romain Verdier 2009-11-09T12:03:30Z 2009-11-09T12:03:30Z I agree. In fact you get the compilation error on the &quot;expr = lambda&quot; line. So the compiler doesn't event try to emit the additional Convert node or anything else actually ; it considers the lambda body is invalid, which is not, according to the c# spec. http://stackoverflow.com/questions/1650205/net-orm-business-object-framework-performance Comment by Romain Verdier on .Net ORM/Business Object Framework Performance Romain Verdier 2009-10-30T14:47:46Z 2009-10-30T14:47:46Z I think you're looking for an Object-Relational Mapper (ORM), not a &quot;.Net object framework&quot;. You may want to change the title accordingly... http://stackoverflow.com/questions/1181952/how-can-i-enabling-the-breakpoint-margin-in-vs2010/1264904#1264904 Comment by Romain Verdier on How can I Enabling the breakpoint margin in VS2010 Romain Verdier 2009-10-15T21:22:52Z 2009-10-15T21:22:52Z Thanks, it worked. http://stackoverflow.com/questions/1533279/why-idatasource-interface-exists-for-asp-net-and-not-for-winform/1533387#1533387 Comment by Romain Verdier on Why IDataSource Interface exists for ASP.NET and not for Winform ? Romain Verdier 2009-10-07T19:36:42Z 2009-10-07T19:36:42Z Well, first, no typing is rarely handy if you ask me. Then, I can only guess why APIs are differents, and I think that's only because very different teams were in charge of ASP.NET and Winforms. On a large framework like .NET, that's the type of inconsistencies you can punctually encounter. But maybe there is a more formal reason.