Romain Verdier

4,573
reputation
272 views

Registered User

name Romain Verdier
member for 1 year
seen 3 hours ago
website
location Paris, France
age 26
.NET Consultant for a French consulting company.
1d
answered Answering “Which method called me?” at the run-time in .NET? Or is CallStack data readable by the code?
1d
comment How-to save a dynamically generated assembly that is stored in-memory?
@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?
1d
comment How-to save a dynamically generated assembly that is stored in-memory?
Assembly saving is so funny! But obviously you're right -- if Daniel has an Assembly instance AssemblyBuilder won't be very usefull :)
1d
answered How-to save a dynamically generated assembly that is stored in-memory?
2d
awarded  Popular Question
Dec
7
accepted Which controls are bound to my dataset?
Dec
4
accepted How should I separate entities methods ?
Dec
4
comment Which controls are bound to my dataset?
So I'm afraid you can't do that, unless you manually implement some sort of tracking system...
Dec
4
answered Which controls are bound to my dataset?
Dec
4
comment How should I separate entities methods ?
I think you're mixing different concepts here. Consider that the service you're talking about is one component 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.
Dec
4
answered How should I separate entities methods ?
Dec
3
comment just a small mathematics question
@Moayad: You're right. So you may want to downvote me.
Dec
3
answered just a small mathematics question
Dec
2
comment C# Scripting language
Actually, Reflection.Emit doesn't allow you to compile C# code. Are you talking about CodeDOM?
Dec
2
awarded  Nice Answer
Dec
1
answered Multi Level ArrayList extraction
Dec
1
revised Multi Level ArrayList extraction
deleted 2 characters in body
Dec
1
comment Multi Level ArrayList extraction
You may want to use 'as' instead of 'is' + cast.
Dec
1
revised Don’t need lazyloading, do I still need a proxy?
edited tags
Nov
30
comment How can I get fields used in a method (.NET) ?
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.
Nov
29
accepted How to get the type for a class by sending just the name of the class instead of the class itself as the parameter?
Nov
24
accepted Where can I find the Microsoft .NET Framework Development Guide?
Nov
13
revised Where can I find the Microsoft .NET Framework Development Guide?
added 582 characters in body
Nov
11
comment Where can I find the Microsoft .NET Framework Development Guide?
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.
Nov
10
answered Where can I find the Microsoft .NET Framework Development Guide?
Nov
9
comment Is this is an ExpressionTrees bug? #2
I 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.
Nov
9
revised Is this is an ExpressionTrees bug? #2
added 825 characters in body
Nov
9
answered Is this is an ExpressionTrees bug? #2
Nov
6
accepted Best Aspect Oriented Framework for features / build performances in .net
Nov
5
awarded  Enlightened
Nov
5
awarded  Nice Answer
Oct
30
comment .Net ORM/Business Object Framework Performance
I think you're looking for an Object-Relational Mapper (ORM), not a ".Net object framework". You may want to change the title accordingly...
Oct
23
answered How should I write a FindClosestMatching function?
Oct
23
revised How should I write a FindClosestMatching function?
deleted 1 characters in body
Oct
23
answered Overloading of GetEnumerator
Oct
22
awarded  Popular Question
Oct
21
answered Use reflection stub to initialize a delegate field lazily
Oct
15
comment How can I Enabling the breakpoint margin in VS2010
Thanks, it worked.
Oct
14
accepted What other alternatives to log4net logging exist?
Oct
11
answered What other alternatives to log4net logging exist?
Oct
9
accepted Threads - Simulation of execution time
Oct
9
answered Threads - Simulation of execution time
Oct
8
revised Best Aspect Oriented Framework for features / build performances in .net
added 150 characters in body
Oct
8
revised Invoke a “CIM method” in system.management
Code formatting
Oct
7
answered Best Aspect Oriented Framework for features / build performances in .net
Oct
7
comment Why IDataSource Interface exists for ASP.NET and not for Winform ?
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.
Oct
7
answered Why IDataSource Interface exists for ASP.NET and not for Winform ?
Oct
7
revised FindAll vs Where extension-method
added 351 characters in body; added 22 characters in body
Oct
7
comment FindAll vs Where extension-method
You're right, FindAll is not implemented used an iterator bloc. So it may be a bit slower than the static Where method.
Oct
7
answered FindAll vs Where extension-method