User Romain Verdier - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T03:26:34Zhttp://stackoverflow.com/feeds/user/4687http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1901541/children-controls-are-inaccessible-due-to-access-modifier/1901608#19016083Answer by Romain Verdier for Children Controls Are Inaccessible Due to Access ModifierRomain Verdier2009-12-14T15:34:52Z2009-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-072Most wanted feature for C# 4.0 ?Romain Verdier2008-09-26T08:59:18Z2009-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#18740171Answer by Romain Verdier for Answering "Which method called me?" at the run-time in .NET? Or is CallStack data readable by the code?Romain Verdier2009-12-09T13:48:41Z2009-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.GetFrames</a>.</p>
http://stackoverflow.com/questions/1872502/how-to-save-a-dynamically-generated-assembly-that-is-stored-in-memory/1872533#18725330Answer by Romain Verdier for How-to save a dynamically generated assembly that is stored in-memory?Romain Verdier2009-12-09T09:04:09Z2009-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#18465602Answer by Romain Verdier for Which controls are bound to my dataset?Romain Verdier2009-12-04T12:06:28Z2009-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#18463223Answer by Romain Verdier for How should I separate entities methods ?Romain Verdier2009-12-04T11:15:07Z2009-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#18393205Answer by Romain Verdier for just a small mathematics questionRomain Verdier2009-12-03T11:22:46Z2009-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#18295430Answer by Romain Verdier for Multi Level ArrayList extractionRomain Verdier2009-12-01T22:57:43Z2009-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<string> 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#17067986Answer by Romain Verdier for Where can I find the Microsoft .NET Framework Development Guide?Romain Verdier2009-11-10T09:58:12Z2009-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#17004653Answer by Romain Verdier for Is this is an ExpressionTrees bug? #2Romain Verdier2009-11-09T11:30:55Z2009-11-09T11:38:00Z<p>Not a real answer yet, I'm investigating, but the first line is compiled as:</p>
<pre><code>Func<decimal, ConsoleColor> converter1 = x => (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#16133000Answer by Romain Verdier for How should I write a FindClosestMatching function?Romain Verdier2009-10-23T13:07:04Z2009-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 => f.Center.Dist(pos))
.FirstOrDefault();
</code></pre>
http://stackoverflow.com/questions/1613089/overloading-of-getenumerator/1613128#16131281Answer by Romain Verdier for Overloading of GetEnumeratorRomain Verdier2009-10-23T12:29:28Z2009-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#16000571Answer by Romain Verdier for Use reflection stub to initialize a delegate field lazilyRomain Verdier2009-10-21T10:48:44Z2009-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#15507485Answer by Romain Verdier for What other alternatives to log4net logging exist?Romain Verdier2009-10-11T13:53:15Z2009-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#15425971Answer by Romain Verdier for Threads - Simulation of execution timeRomain Verdier2009-10-09T08:38:52Z2009-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 <= 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#15338954Answer by Romain Verdier for Best Aspect Oriented Framework for features / build performances in .netRomain Verdier2009-10-07T20:11:12Z2009-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#15333871Answer by Romain Verdier for Why IDataSource Interface exists for ASP.NET and not for Winform ?Romain Verdier2009-10-07T18:34:26Z2009-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#15317372Answer by Romain Verdier for FindAll vs Where extension-methodRomain Verdier2009-10-07T13:45:18Z2009-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#15249831Answer by Romain Verdier for .NET Attachable ProfilerRomain Verdier2009-10-06T11:15:42Z2009-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#14981891Answer by Romain Verdier for c# ILGenerator nop?Romain Verdier2009-09-30T13:38:08Z2009-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#14913701Answer by Romain Verdier for C# Class Methods Only Callable from certain Projects?Romain Verdier2009-09-29T08:56:23Z2009-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#149134211Answer by Romain Verdier for Is there a List<T> in .NET 2 that raises events when the list changes?Romain Verdier2009-09-29T08:50:05Z2009-09-29T08:50:05Z<p><a href="http://msdn.microsoft.com/en-us/library/ms132679.aspx" rel="nofollow"><code>BindingList<T></code></a></p>
http://stackoverflow.com/questions/1490385/good-quality-c-code/1491139#14911392Answer by Romain Verdier for Good Quality C# codeRomain Verdier2009-09-29T07:58:38Z2009-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#14719841Answer by Romain Verdier for Find references to the object in runtimeRomain Verdier2009-09-24T14:15:28Z2009-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#14706350Answer by Romain Verdier for Dymanic Controls C# Accessing without Name propertyRomain Verdier2009-09-24T09:28:34Z2009-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#14113983Answer 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 Verdier2009-09-11T14:55:38Z2009-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#140035010Answer by Romain Verdier for Is it possible to detect class context in an inherited static method?Romain Verdier2009-09-09T15:16:51Z2009-09-09T15:31:52Z<p>You can make the Animal class generic.</p>
<pre><code>class Animal<T> where T : Animal<T>
{
public static T Create()
{
// Don't know what you'll be able to do here
}
}
class Dog : Animal<Dog>
{
}
</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#13999615Answer by Romain Verdier for Compilation Error with Generic Type T when passed to a function twiceRomain Verdier2009-09-09T14:14:17Z2009-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<Foo> { /*...*/ }
</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<Foo>(new Foo("lol"));
}
public void Method1<T>(T parent) where T : IBase
{
Method1(parent.GetChildren());
// Same as :
// Method1<IBase>(parent.GetChildren());
// since GetChildren() returns IEnumerable<IBase>, not IEnumerable<Foo>
}
public void Method1<T>(IEnumerable<T> children) where T : IBase
{
}
</code></pre>
http://stackoverflow.com/questions/1394697/what-is-the-equivalent-of-container-getallinstancest-in-ninject/1394758#13947583Answer by Romain Verdier for What is the equivalent of Container.GetAllInstances<T> in NInject?Romain Verdier2009-09-08T15:48:40Z2009-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<IWorker>().To<WorkerA>();
kernel.Bind<IWorker>().To<WorkerB>();
kernel.Bind<IWorker>().To<WorkerC>();
</code></pre>
<p>And then:</p>
<pre><code>kernel.GetAll<IWorker>();
</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#13947222Answer by Romain Verdier for C# - Property ClarificationRomain Verdier2009-09-08T15:40:07Z2009-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#1872533Comment by Romain Verdier on How-to save a dynamically generated assembly that is stored in-memory?Romain Verdier2009-12-09T13:29:27Z2009-12-09T13:29:27Z@Daniel: What do you mean by "InternalAssemblyBuilder"? 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#1872533Comment by Romain Verdier on How-to save a dynamically generated assembly that is stored in-memory?Romain Verdier2009-12-09T09:17:47Z2009-12-09T09:17:47ZAssembly 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#1846560Comment by Romain Verdier on Which controls are bound to my dataset?Romain Verdier2009-12-04T13:33:47Z2009-12-04T13:33:47ZSo 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#1846322Comment by Romain Verdier on How should I separate entities methods ?Romain Verdier2009-12-04T11:46:49Z2009-12-04T11:46:49ZI 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 "persistence service" can be a simple class. Read "data access object" if you prefer.http://stackoverflow.com/questions/1839292/just-a-small-mathematics-question/1839320#1839320Comment by Romain Verdier on just a small mathematics questionRomain Verdier2009-12-03T13:10:49Z2009-12-03T13:10:49Z@Moayad: You're right. So you may want to downvote me.http://stackoverflow.com/questions/1832293/c-scripting-languageComment by Romain Verdier on C# Scripting languageRomain Verdier2009-12-02T11:27:37Z2009-12-02T11:27:37ZActually, 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#1832193Comment by Romain Verdier on When is it better practice to explicitly use the delegate keyword instead of a lambda?Romain Verdier2009-12-02T11:25:30Z2009-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) => {}http://stackoverflow.com/questions/1829394/multi-level-arraylist-extraction/1829409#1829409Comment by Romain Verdier on Multi Level ArrayList extractionRomain Verdier2009-12-01T22:36:18Z2009-12-01T22:36:18ZYou may want to use 'as' instead of 'is' + cast.
http://stackoverflow.com/questions/1825729/limitations-of-cabComment by Romain Verdier on Limitations of CABRomain Verdier2009-12-01T12:06:36Z2009-12-01T12:06:36ZWhat is your question?http://stackoverflow.com/questions/1435474/how-can-i-get-fields-used-in-a-method-net/1440424#1440424Comment by Romain Verdier on How can I get fields used in a method (.NET) ?Romain Verdier2009-11-30T22:10:31Z2009-11-30T22:10:31ZLooks 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#1706798Comment by Romain Verdier on Where can I find the Microsoft .NET Framework Development Guide?Romain Verdier2009-11-11T18:55:17Z2009-11-11T18:55:17ZThe 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#1700465Comment by Romain Verdier on Is this is an ExpressionTrees bug? #2Romain Verdier2009-11-09T12:03:30Z2009-11-09T12:03:30ZI agree. In fact you get the compilation error on the "expr = lambda" 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-performanceComment by Romain Verdier on .Net ORM/Business Object Framework PerformanceRomain Verdier2009-10-30T14:47:46Z2009-10-30T14:47:46ZI think you're looking for an Object-Relational Mapper (ORM), not a ".Net object framework". You may want to change the title accordingly...http://stackoverflow.com/questions/1181952/how-can-i-enabling-the-breakpoint-margin-in-vs2010/1264904#1264904Comment by Romain Verdier on How can I Enabling the breakpoint margin in VS2010Romain Verdier2009-10-15T21:22:52Z2009-10-15T21:22:52ZThanks, it worked.http://stackoverflow.com/questions/1533279/why-idatasource-interface-exists-for-asp-net-and-not-for-winform/1533387#1533387Comment by Romain Verdier on Why IDataSource Interface exists for ASP.NET and not for Winform ?Romain Verdier2009-10-07T19:36:42Z2009-10-07T19:36:42ZWell, 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.