active questions tagged reflection - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T14:04:46Z http://stackoverflow.com/feeds/tag/reflection http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1941263/how-to-call-a-generic-method-through-reflection 1 How to call a generic method through reflection milan 2009-12-21T16:52:26Z 2009-12-22T13:09:48Z <p>Hi,</p> <p>is it possible to call with reflection a method with "explict type argument" <code>&lt;S&gt;</code> definition<br> e.g. <code>oObject.Cast&lt;S&gt;()</code> ?</p> <p>where is:</p> <pre><code>IList &lt;P&gt; oObject = new List &lt;P&gt;(); </code></pre> <p>I tried with</p> <pre><code>oObject.getType().InvokeMember( "Cast", BindingFlags.InvokeMethod, null, oObject, null) </code></pre> <p>but it does not work, does anyone know why?</p> http://stackoverflow.com/questions/1944224/net-reflection-how-do-i-invoke-a-method-via-reflection-that-returns-array-of-o 0 .NET reflection : How do I invoke a method via reflection that returns array of objects? rajesh pillai 2009-12-22T04:48:30Z 2009-12-22T05:10:13Z <p>Had a quick question.. Googled but nothing worthwhile found..</p> <p>I have a simple type like shown below.</p> <pre><code>public class DummyClass { public string[] Greetings() { return new string[] { "Welcome", "Hello" }; } } </code></pre> <p>How can I invoke the "Greetings" method via reflection? Note the method returns array of strings.</p> http://stackoverflow.com/questions/196936/reflection-and-generic-types 6 Reflection and generic types Slace 2008-10-13T07:37:22Z 2009-12-21T17:33:10Z <p>I'm writing some code for a class constructor which loops through all the properties of the class and calls a generic static method which populates my class with data from an external API. So I've got this as an example class:</p> <pre><code>public class MyClass{ public string Property1 { get; set; } public int Property2 { get; set; } public bool Property3 { get; set; } public static T DoStuff&lt;T&gt;(string name){ // get the data for the property from the external API // or if there's a problem return 'default(T)' } } </code></pre> <p>Now in my constructor I want something like this:</p> <pre><code>public MyClass(){ var properties = this.GetType().GetProperties(); foreach(PropertyInfo p in properties){ p.SetValue(this, DoStuff(p.Name), new object[0]); } } </code></pre> <p>So the above constructor will thrown an error because I'm not supplying the generic type.</p> <p>So how do I pass in the type of the property in?</p> http://stackoverflow.com/questions/552805/c-reflection-generics 0 C# Reflection & Generics bleevo 2009-02-16T09:56:30Z 2009-12-21T13:57:22Z <p>Hi,</p> <p>Got a complex reflection question. Given the code below how would you implement the pseudo so that given an instance of Parent it will enumerate over the types Properties find child objects with a Property of the same type as Parent and set the reference to the provided p. Hope that makes sense. Also I need this to work with Generic lists as well. See below for sample object graph. After running this every Person in the child Pet instances will be the Parent instance.</p> <pre><code> public class ChildSetter&lt;Parent&gt; { public void Set(Parent p) { //pseudo //var parentName = p.GetType().Name; //foreach (var property in p.Properties) //{ // if (!property.IsList) // { // if (property.ContainsProperty(parentName)) // property.Properties[parentName] = p; // } // else // { // if (property.ListType.ContainsProperty(parentName)) // { // foreach (var item in property) // { // item.Properties[parentName] = p; // } // } // } //} } } public class Person { public Pet Pet { get; set; } public IList&lt;Pet&gt; Pets { get; set; } } public class Pet { public Person Person { get; set; } } </code></pre> <p>A non generic example of this code is below:</p> <pre><code> public void Set(Person p) { p.Pet.Person = p; foreach (var pet in p.Pets) { pet.Person = p; } } </code></pre> http://stackoverflow.com/questions/1938755/getting-the-superclasses-of-a-python-class 2 Getting the superclass(es) of a Python class andz 2009-12-21T07:49:15Z 2009-12-21T08:24:07Z <pre><code>class p1(object): pass class p2(p1): pass </code></pre> <p>So p2 is the subclass of p1. Is there a way to find out programmatically that p1 is [one of] the superclass[es] of p2 ?</p> http://stackoverflow.com/questions/1937790/reflection-and-late-binding-in-silverlight 0 Reflection and late binding in Silverlight James Helms 2009-12-21T01:45:22Z 2009-12-21T01:45:22Z <p>I want to be able to load items in System.Windows.Controls using late binding.</p> <p>I can do it with dlls that i can load remotely like this:</p> <pre><code> private void Button_Click(object sender, RoutedEventArgs e) { panel1.Children.Clear(); WebClient c = new WebClient(); c.OpenReadCompleted += new OpenReadCompletedEventHandler(c_OpenReadCompleted); c.OpenReadAsync(new Uri("DynamicXapDataGrid_CS.xap", UriKind.Relative)); } void c_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e) { string appManifest = new StreamReader(Application.GetResourceStream(new StreamResourceInfo(e.Result, null), new Uri("AppManifest.xaml", UriKind.Relative)).Stream).ReadToEnd(); XElement deploy = XDocument.Parse(appManifest).Root; List&lt;XElement&gt; parts = (from assemblyParts in deploy.Elements().Elements() select assemblyParts).ToList(); Assembly asm = null; foreach (XElement xe in parts) { string source = xe.Attribute("Source").Value; AssemblyPart asmPart = new AssemblyPart(); StreamResourceInfo streamInfo = Application.GetResourceStream(new StreamResourceInfo(e.Result, "application/binary"), new Uri(source, UriKind.Relative)); if (source == "DynamicXapDataGrid_CS.dll") { asm = asmPart.Load(streamInfo.Stream); } else { asmPart.Load(streamInfo.Stream); } } panel1.DataContext = FakeData.GetCustomers(LastNameSearch.Text); UIElement myData = asm.CreateInstance("DynamicXapDataGrid_CS.Page") as UIElement; panel1.Children.Add(myData); panel1.UpdateLayout(); } </code></pre> <p>the problem comes when i want to load, say a Grid.</p> <pre><code> Assembly asm = Assembly.GetCallingAssembly(); UIElement element = null; try { element = asm.CreateInstance("System.Windows.Controls.Grid") as UIElement; } catch { } </code></pre> <p>is always null. I assume that i may need the fully qualified name for Grid, but i have been Googling this for hours now with no solution. Any help would be appreciated.</p> http://stackoverflow.com/questions/1934808/bad-idea-antipatterns -1 bad idea antipatterns [closed] h2g2java 2009-12-20T04:10:36Z 2009-12-20T05:23:38Z <p>Is it a bad idea to say "it's a bad idea"?</p> <p>When someone tells us, "it's a bad idea", he/she sounds really authoritative so much so that you start to believe that exhortation until months later that you find that exhortation was itself actually a bad idea.</p> <p>First, someone used to tell us "it's a bad idea" to use the database as IPC bus. It's an "anti-pattern", so he declares knowledgeably, as though. The advice was just write "simple" socket communication routines.</p> <p>After further research and succumbing to the senior development manager's gungho who's had 25 years' development experience and violating rules for practicality, maintainability and sustainability's sake I discover that not using the database as IPC would actually have been a "bad-idea antipattern".</p> <p>In an enterprise toolshop environment with lots of machines going back and forth, controlled and communicated by vms, unix and windows machines - I could be writing for a process that needs to select message from vapourbus where priority&lt;2 having count(fulfill)=0</p> <p>which is very simply, a service with free resources polling for high priority unfulfilled requests.</p> <p>What if, a service is looking for requests that are older than two hours, from the product line "Nexus6". Additionally, we need to log the IPC messages, their sources, datetimes, fulfillment duration, wait-before-fulfillment duration, etc. Message aging is very important to ensure that a request is not superceded by a newer request or by an older request that is already fulfulling what is being requested.</p> <p>Writing the socket routines, managing, aging, archiving, dispensing using maps and lists would actually be the anti-pattern rather than using a rdbms for IPC, wouldn't it?</p> <p>But then one might say that the "antipattern" accusation is aimed at less demanding and simpler processes. However, my observation is, most multi-process environment that require IPC has complex message structures and that is why they require IPC. In the industrial environment, where simplicity and sustainability supercede code efficiency, I do not see too many opportunities where it is a good practice not to use a database as IPC.</p> <p>Especially with the advent of lite weight dbs like memory-based dbs and mysql. In fact, even for a local machine with multiple threads finding an efficient petrinet flow, it is a good idea to use a dbms for interthread communication.</p> <p>For people who authoritatively declare IPC-on-dbms is an antipattern bad idea, perhaps they have been confined to classroom cases and have not been exposed to the majority of environments requiring IPC.</p> <p>Second, someone declares that it's a real bad-idea antipattern to use reflection and that using reflection signifies a flaw in your design. But then I'm finding more and more people using reflection because it's quick and dirty and "we have lot's of processing power". Because, aspect-wise, people are too lazy to repeat coding the same reset recipe into 200 different machine drivers after a datastream is closed. Why not just use reflection to inspect the name of the class and method and if any matches filter, just run the reset? People say, you should use "proper tools" like factories rather than reflection.</p> <p>Third, it was an exhortation to use 3.5 normalisation or at least 3rd normalisation. I was in both teams where one team was very critical of the other for using only 2nd normalisation like 2nd normalisation is a "bad idea". Guess what, the team that persist with 2nd normalisation had products that ran faster much faster and the team that persists with 3rd normalisation finally made compromises and condescended to using 2nd normalisation "for selective cases".</p> <p>Is dbms-based-IPC a bad idea? Is using reflection a bad idea? Is it a bad idea to use it, aspect wise, to short-circuit a couple hundreds of drivers? Finally, we do all agree that 2nd normalisation is sufficient for most entities, in most industrial environments, don't we?</p> <p>Of course there are more stories of "bad idea" condescension that the phrase together with "antipattern" has become as stale to the ears as the now meaningless phrase "is your cup half-full or half-empty", don't you agree? But my current questions suffices at the moment.</p> http://stackoverflow.com/questions/1933369/how-to-reflect-on-method-with-out-params 1 How to reflect on method with out params? McKAMEY 2009-12-19T16:37:16Z 2009-12-19T17:07:30Z <p>I am trying to get a <code>MethodInfo</code> object for a method on a type with an <code>out</code> param in its signature. Something to the effect of this:</p> <pre><code>MethodInfo tryParse = typeof(T).GetMethod( "TryParse", BindingFlags.Public|BindingFlags.Static, null, new Type[] { typeof(string), typeof(T) }, null); </code></pre> <p>But the problem is, it doesn't find it because the type of the second parameter is not simply <code>T</code> but <code>out T</code>. When I debug through and use <code>typeof(T).GetMethods()</code> I can see the actual <code>MethodInfo</code> that I want and the <code>ParameterInfo</code> object is either of type <code>T&amp;</code> or <code>T ByRef</code>, but I can't see how to create the <code>Type</code> that represents this from <code>typeof(T)</code>.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1932622/sql-class-deserializer 0 SQL <-> Class (De)Serializer? acidzombie24 2009-12-19T11:06:48Z 2009-12-19T12:43:12Z <p>Today i learned this</p> <pre><code> JavaScriptSerializer ser = new JavaScriptSerializer(); Foo foo = ser.Deserialize&lt;Foo&gt;(jsonSz); </code></pre> <p>I had to match the class with the json i was pulling from a remote site. It saved me much time that i could just write the class and not worry about processing the data and putting them into the class. I also didnt need to use attributes everywhere. <a href="http://stackoverflow.com/questions/401756/parsing-json-using-json-net/402694#402694">Example here</a></p> <p>Is there a lib i can use for TSQL (which i hope supports mysql and sqlite) to allow me to write classes like the below and easily do something like</p> <pre><code>results = doSomething&lt;User&gt;(@"select id WHERE username=? password=?", user, hash(pass)); //results is null or results.id is the only initalize value. class User { [primary_key] long id; string username; byte[] password; DateTime create, lastLogin; string? signature; //the only column that is allow to have null. //etc } class Comment { [primary_key] long id; User author; //automatically uses user as a reference foriegn key Comment parent; //may be 0 to stand for root. But all PK start at 1 so does this cause trouble when using foriegn keys? DateTime post; string comment; } //i have no idea how a query for a comment with each of its children comment going 5 deep would look like //i wouldnt mind writing all sql querys </code></pre> http://stackoverflow.com/questions/707980/modifying-a-type-after-it-has-been-created-with-typebuilder-createtype 1 Modifying a type after it has been created with TypeBuilder.CreateType Eye 2009-04-02T01:31:58Z 2009-12-18T23:03:43Z <p>I'm creating a dynamic class in a dynamic assembly at runtime, and want to be able to Define methods for that class on demand.</p> <p>Ex.</p> <ol> <li>Build the Type X</li> <li>Define Method GetA on Type X</li> <li>Create Type X</li> <li>Call GetA</li> <li>use same type builder for Type X</li> <li>Define new Method GetB on Type X</li> <li>Recreate type X, that now has both GetA and GetB</li> </ol> <p>if that is impossible then I will have to build the type on demand for one of the methods, and to do that then I have to create the assembly as well, on each time.</p> <p>Any Ideas, Thanks</p> http://stackoverflow.com/questions/1810614/getting-all-classes-from-a-package 3 Getting all Classes from a Package JustMaximumPower 2009-11-27T20:57:17Z 2009-12-18T20:47:45Z <p>Lets say I have a java package <code>commands</code> which contains classes that all inherit from <code>ICommand</code> can I get all of those classes somehow? I'm locking for something among the lines of:</p> <pre><code>Package p = Package.getPackage("commands"); Class&lt;ICommand&gt;[] c = p.getAllPackagedClasses(); //not real </code></pre> <p>Is something like that possible?</p> http://stackoverflow.com/questions/1920977/creating-an-instance-of-httppostedfile-with-reflection 0 Creating an instance of HttpPostedFile with Reflection Lieven Cardoen 2009-12-17T11:00:07Z 2009-12-18T08:35:19Z <p>Is there a way to create an instance of HttpPostedFile with Reflection.</p> <p>I tried:</p> <pre><code>var obj = (HttpPostedFile)typeof(HttpPostedFile).GetConstructor( BindingFlags.NonPublic | BindingFlags.Instance, null, Type.EmptyTypes, null).Invoke(null); var obj2 = Activator.CreateInstance(typeof(HttpPostedFile) , BindingFlags.NonPublic | BindingFlags.Instance , null , new object[] { } , System.Globalization.CultureInfo.CurrentCulture); </code></pre> <p>But both of them do not work.</p> <p>Update: apparently the internal constructor looks like this:</p> <pre><code>internal HttpPostedFile(string filename, string contentType, Stream stream) </code></pre> <p>I tried this but without success:</p> <pre><code>Stream s = new MemoryStream(b.blob); //var httpPostedFile = new HttpPostedFile(); Type[] parameters = { typeof(string), typeof(string), typeof(Stream) }; var obj = (HttpPostedFile)typeof(HttpPostedFile).GetConstructor( BindingFlags.NonPublic | BindingFlags.Instance, null, parameters, null) .Invoke(new object[] { "filename", "image/jpeg", s }); </code></pre> http://stackoverflow.com/questions/1923341/microsofts-unity-and-powershell 0 Microsoft's Unity and PowerShell Chris 2009-12-17T17:34:20Z 2009-12-18T00:24:36Z <p>In a C# solution, I have multiple class libraries for the domain model, services, and repositories. I configured Unity in web.config of the main website project so that it knows what concrete objects to map to the services and repositories. For quick testing, though, I'd like to use PowerShell to load the assemblies and manipulate classes/functions from there to toy around with behavior. However, if I load the class projects directly into PowerShell, it won't know or care about web.config since I don't need that project, and Unity won't know what to inject.</p> <p>I can always have a function or constructor (?) that will substitute the concrete services manually, I think, but I was curious if there's a better way around it than that.</p> http://stackoverflow.com/questions/1924733/list-of-dynamicly-created-structure 1 List<> of dynamicly created structure Max Yaffe 2009-12-17T21:32:29Z 2009-12-17T21:53:46Z <p>In C# I want to create a list based on a dynamic value type, e.g.:</p> <pre><code>void Function1() { TypeBuilder tb = .... // tb is a value type ... Type myType = tb.CreateType(); List&lt;myType&gt; myTable = new List&lt;myType&gt;(); } void Function2(Type myType) { List&lt;myType&gt; myTable = new List&lt;myType&gt;(); } </code></pre> <p>This won't comple because List&lt;> wants a staticly defined type name. Is there any way to work around this?</p> http://stackoverflow.com/questions/1924253/how-to-determine-by-reflection-if-a-method-returns-void 0 How to determine by reflection if a Method returns 'void' Pablo Fernandez 2009-12-17T20:09:52Z 2009-12-17T20:28:31Z <p>Hi,</p> <p>I have a <code>java.lang.reflect.Method</code> object and I would like to know if it's return type is <code>void</code>. </p> <p>I've checked the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/reflect/Method.html" rel="nofollow">Javadocs</a> and there is a <code>getReturnType()</code> method that returns a Class object. The thing is that they don't say what would be the return type if the method is void.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1921543/constructor-on-type-system-web-httppostedfile-not-found 0 Constructor on type 'System.Web.HttpPostedFile' not found. Lieven Cardoen 2009-12-17T12:47:10Z 2009-12-17T13:17:11Z <p>I'm trying to create an instance of HttpPostedFile with</p> <pre><code>var obj2 = Activator.CreateInstance( typeof(HttpPostedFile), BindingFlags.NonPublic | BindingFlags.Instance, null, new object[] { }, System.Globalization.CultureInfo.CurrentCulture ); </code></pre> <p>but I'm getting the error 'Constructor on type 'System.Web.HttpPostedFile' not found.'.</p> <p>Is there another way to create an instance of HttpPostedFile or am I doing something wrong?</p> http://stackoverflow.com/questions/1920987/how-do-i-iterate-a-generic-reflected-method 2 How do I iterate a generic reflected method? tigermain 2009-12-17T11:02:19Z 2009-12-17T11:42:35Z <p>In my CMS I have a load of modules which allow me to do some clever item listing stuff. I am trying to use them to pull out a list of their child objects via reflection, but am getting stuck with the level of generics involved.</p> <p>I have got as far as this method:</p> <pre><code>var myList = moduleObj.GetType().GetMethod("ChildItems").Invoke(moduleObj, new object[] { }); </code></pre> <p>which returns a List. Each modulespecificobject is bound it an IItemListable interface which has the methods in it I am trying to access.</p> <p>I am unsure how I can cast or iterate the myList object as a set of IItemListable objects access the methods required.</p> <p>Thanks</p> <p>A few of the classes:</p> <pre><code>public interface IItemListable { IQueryable GetQueryableList(); string GetIDAsString(); IItemListable GetItemFromUrl(string url, List&lt;IItemListable&gt; additionalItems); bool IsNewItem(); IItemListable CreateItem&lt;T&gt;(ItemListerControl&lt;T&gt; parentList) where T : class, IItemListable; IItemListable LoadItem(string id); IItemListable SaveItem(); RssToolkit.Rss.RssItem ToRssItem(); void DeleteItem(); string ItemUrl(); } public interface IItemListModule&lt;T&gt; where T: IItemListable { List&lt;T&gt; ChildItems(); } public class ArticlesModule : ItemListModuleBase&lt;Article&gt;, IItemListModule&lt;Article&gt; { #region IItemListModule&lt;Article&gt; Members public new List&lt;Article&gt; ChildItems() { return base.ChildItems().Cast&lt;Article&gt;().Where(a =&gt; a.IsLive).ToList(); } #endregion } </code></pre> http://stackoverflow.com/questions/1745340/quick-question-regarding-reflection-and-permissions-net-2008 0 Quick question regarding reflection and permissions. .net 2008 Jules 2009-11-16T22:44:52Z 2009-12-17T02:00:03Z <p>I have various projects that use reflection to access and invoke private or internal members in some of the framework classes.</p> <p>These projects all work fine on my machine (running visual basic express 2008), but are they guaranteed to work on another machine, or, say, over a network?</p> <p>I've had a look at ReflectionPermission, but I'm not sure if I need that granting to me or if I grant it to my project!</p> <p>I'm not as stupid as this question sounds, honest!</p> http://stackoverflow.com/questions/1915272/is-this-possible-in-c-getstringnameo-property-or-o-property-getpropertystringn 0 is this possible in C# GetStringName(o.Property) or o.Property.GetPropertyStringName() ? Omu 2009-12-16T15:15:25Z 2009-12-16T15:31:33Z <p>I need some method that is going to get the property's string name, I don't know if this is possible in C#, is it ?</p> http://stackoverflow.com/questions/1214483/sqlclientpermission-failure-in-assembly-loaded-via-reflection 0 SqlClientPermission failure in assembly loaded via reflection Matthew Belk 2009-07-31T19:40:02Z 2009-12-16T14:00:03Z <p>I am having a really tough time with a problem. I have a web application that I have just modified that allows customers to supply custom assemblies that they can use to hook into an entity save pipeline. These custom assemblies are loaded via reflection when an entity is persisted to the database. They refer to a common DAL assembly that handles all of the data access.</p> <p>I have a test server (Win2k3) where this system works flawlessly. Now that I've pushed it out to my production server cluster (one Win2k3 and one Win2k8), my custom assembly bombs the first time it calls a DAL method that accesses the database (SQL2005). The log information that I gather indicates that there is a failure in getting a SqlClientPermission. Contrary to best practices, I have my web app running in Full Trust. My custom assembly is strong named.</p> <p>Are there any suggestions to where I can look for differences between my test server config and my production server configs? If this is not the proper forum, which one is?</p> <p>Thanks, Matthew</p> http://stackoverflow.com/questions/1914058/how-do-i-get-a-list-of-all-loaded-types-in-c 1 How do I get a list of all loaded Types in C#? rui 2009-12-16T11:26:13Z 2009-12-16T11:43:38Z <p>I need to retrieve all enums that were loaded from a given set of Assemblies.</p> http://stackoverflow.com/questions/1913880/smart-way-to-find-the-corresponding-nullable-type 0 Smart way to find the corresponding nullable type? Marc Wittke 2009-12-16T10:55:23Z 2009-12-16T11:21:59Z <p>How could I avoid this dictionary (or create it dynamically)?</p> <pre><code>Dictionary&lt;Type,Type&gt; CorrespondingNullableType = new Dictionary&lt;Type, Type&gt; { {typeof(bool), typeof(bool?)}, {typeof(byte), typeof(byte?)}, {typeof(sbyte), typeof(sbyte?)}, {typeof(char), typeof(char?)}, {typeof(decimal), typeof(decimal?)}, {typeof(double), typeof(double?)}, {typeof(float), typeof(float?)}, {typeof(int), typeof(int?)}, {typeof(uint), typeof(uint?)}, {typeof(long), typeof(long?)}, {typeof(ulong), typeof(ulong?)}, {typeof(short), typeof(short?)}, {typeof(ushort), typeof(ushort?)}, {typeof(Guid), typeof(Guid?)}, }; </code></pre> http://stackoverflow.com/questions/1913092/getting-object-instance-by-string-name-in-scala 1 Getting object instance by string name in scala Dave 2009-12-16T08:12:37Z 2009-12-16T10:49:54Z <p>I need the object (or "singleton object" or "companion object"... anything but the class) defined by a string name. In other words, if I have:</p> <p>package myPackage object myObject</p> <p>...then is there anything like this:</p> <p>GetSingletonObjectByName("myPackage.myObject") match { case instance: myPackage.myObject => "instance is what I wanted" }</p> http://stackoverflow.com/questions/1908918/getgenerictypedefinition-returning-false-when-looking-for-ienumerablet-in-list 3 GetGenericTypeDefinition returning false when looking for IEnumerable<T> in List<T> Nat Ryall 2009-12-15T17:06:44Z 2009-12-16T10:13:05Z <p>Following <a href="http://stackoverflow.com/questions/1649888/net-reflection-detecting-ienumerablet">this question</a>, why does <code>enumerable</code> in this:</p> <pre><code>Type type = typeof(List&lt;string&gt;); bool enumerable = (type.IsGenericType &amp;&amp; type.GetGenericTypeDefinition() == typeof(IEnumerable&lt;&gt;)); </code></pre> <p>return <code>false</code>?</p> <p><hr></p> <h2>Edit 1</h2> <p>As the above doesn't work, what would be the best way to determine if a class implements IEnumerable? </p> http://stackoverflow.com/questions/1285703/can-we-construct-an-instance-of-opcode 0 Can we construct an instance of `OpCode`? 280Z28 2009-08-17T00:05:52Z 2009-12-16T09:16:39Z <p>The .NET Framework 4.0 introduces several items to the Reflection API that range from extremely useful to vital for my work. Among these are protected constructors for <code>Assembly</code>, <code>Module</code>, <code>MethodBody</code>, and <code>LocalVariableInfo</code> and the new <code>CustomAttributeData</code> class. There are a couple items I still need that are quite troublesome to work around. I believe they easily apply to the same [small] group of people would need to extend the types I just listed.</p> <p><strong>This time</strong>: I'm looking for a way to construct an instance of the <a href="http://msdn.microsoft.com/en-us/library/system.reflection.emit.opcode.aspx" rel="nofollow"><code>System.Reflection.Emit.OpCode</code></a> struct with my own parameters. I currently invoke the internal constructor to create the instances. It's not detrimental to performance because I expose the constructed items as <code>public static readonly</code> members of a class for reuse, but as you can imagine this is an extremely sub-optimal scenario.</p> <p>Is there any reason it is not possible to make the current internal <code>OpCode</code> constructor public with documentation that states user-constructed <code>OpCode</code>s cannot be used with <code>ILGenerator</code>.</p> <p>Edit: Here's an example. By creating the following custom opcode, I'm able to use it in byte code transformations between some intermediate lists of instructions without resorting to creating temporary local variables. If I were emitting IL, I'd convert the remaining <code>swap</code> instructions to a valid IL representation, but in my case the next step is a JIT that understands the custom <code>swap</code> instruction. I'm using the <code>Prefix2</code> prefix <code>0xFD</code>, which is reserved and unused by any valid IL opcodes.</p> <pre><code>/// &lt;summary&gt; /// Swaps adjacent elements on the evaluation stack. The supplied inline int32 argument gives the /// index of the topmost item in the pair. /// &lt;/summary&gt; public static readonly OpCode Swap; </code></pre> <p>I'll also be using this for JIT intrinsics that don't have a simple/common managed code representation but have a simple platform-dependent representation available in the various native code generators. One of these is <code>ldthread</code> (loads a reference to the current managed thread's <code>RuntimeThread</code> representation).</p> http://stackoverflow.com/questions/1897712/reflection-what-can-we-achieve-using-it 7 Reflection. What can we achieve using it? Jonathan 2009-12-13T20:58:11Z 2009-12-16T00:37:21Z <p>Hi! </p> <p>I'm reading and learning about reflection in C#. It would be fine to know how can it help me in my daily work, so I want people with more experience than me tell me samples or ideas about what kinds of things can we achieve using it, or how can we reduce de amount of code that we write.</p> <p>Thanks.</p> http://stackoverflow.com/questions/289845/why-type-equalst1-t2-and-not-the-equality-operator 0 Why Type.Equals(t1, t2) and not the equality operator? tuuzscncsr 2008-11-14T11:35:54Z 2009-12-15T18:35:16Z <p>Why must <code>Type.Equals(t1, t2)</code> be used to determine equivalent types, and not the equality operator (e.g. for VB.NET, <code>t1 = t2</code>)? </p> <p>It seems inconsistent with other parts of the .NET API.</p> <p>Example in VB.NET:</p> <p><code>If GetType(String) = GetType(String) Then Debug.Print("The same, of course") End If </code></p> <p>causes a compile-time error of "<code>Operator '=' is not defined for types 'System.Type' and 'System.Type'.</code>"</p> http://stackoverflow.com/questions/1909168/custom-configuration-issue-c 0 Custom configuration issue (c#) Maximiliano Rios 2009-12-15T17:49:25Z 2009-12-15T17:49:25Z <p>Hi everybody,</p> <p>I'm woking on a project that requires to extend ConfigurationSection for every configuration object. Configuration information is stored into the database and it can be overriden by custom local configuration. It's the opposite order as I mentioned (local values are merged to database info, proritizing database).</p> <p>Classed derived from ConfigurationSection are instantiated by reflection. As we know the type associated to a program module, we can just create it, load config info, merge to database and return the object.</p> <p>Within one of the classes I need to provide another configuration nested, it's a driver that has its own parameters. I thought I could do the following:</p> <pre><code>public ConfigurationSection DriverConfig { get { ... } set { ... } } </code></pre> <p>So I can inject by reflection a nested configuration into this one. As I need to decorate the property to indicate where this configuration must be loaded from; I added the following decoration:</p> <pre><code>[ConfigurationProperty("DriverConfig", IsRequired = false)] </code></pre> <p>This line causes the object can't be instantiated. I get the following exception:</p> <p>The Configuration property 'DriverConfig' may not be derived from ConfigurationSection.</p> <p>I never noted until I tried to set a property by reflection, after create the instance the object is in a "fault" state, all the properties throws same exception.</p> <p>I'm going to implement it in a different way now, but I would like to know why I'm not able to do that. I know ConfigurationSection is abstract, but I would expect to have the ability to cast a derived object and set this property. </p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1902339/portably-passing-arguments-to-phps-reflectionmethodinvokeargs-by-reference 0 Portably passing arguments to PHP's ReflectionMethod::invokeArgs by reference Dave 2009-12-14T17:38:57Z 2009-12-14T19:31:25Z <p>Seemingly something of a misnomer, as pass by reference is deprecated in PHP 5.3... anyway, what I'm trying to do is write a unit test framework using reflection, that allows you to pass arguments to a method which requires a reference. e.g.</p> <pre><code>class Bar { function TestMethod($arg1, &amp;$result) { $result = 'hello'; return true; } } $rc = new ReflectionMethod('Bar', 'TestMethod'); $return_val = $rc-&gt;invokeArgs($instance, $arguments); </code></pre> <p>Now, I found a forum post at <a href="http://www.phwinfo.com/forum/comp-lang-php/273316-how-invoke-reflectionmethod-pass-variable-reference-asargument.html" rel="nofollow">http://www.phwinfo.com/forum/comp-lang-php/273316-how-invoke-reflectionmethod-pass-variable-reference-asargument.html</a> which clued me into simply sticking a variable reference into my $arguments array:</p> <pre><code>$arguments = array('arg1', &amp;$byref_result); </code></pre> <p>This does work but gives a 'Deprecated: Call-time pass-by-reference has been deprecated' error. I'd like to make sure this code is forwards compatible, so if they remove it completely in PHP 6 I won't be screwed. Obviously I'd prefer not to have to rewrite any code in my project because of shortfalls in my testing framework. Any ideas or suggestions? Thanks! :)</p> <p>P.S. I tried to hit up phpunit's documentation to see if it can do it but the site seems to be down for the moment. Any links to "don't re-invent the wheel" solutions very welcome, though I'm also curious about the question itself.</p> http://stackoverflow.com/questions/1898695/securityexceptions-using-the-html-helpers-in-third-party-libraries 0 SecurityExceptions using the HTML Helpers in third-party libraries rick schott 2009-12-14T03:04:09Z 2009-12-14T18:15:09Z <p>Can someone explain this paragraph on page 258(Pro ASP.NET MVC 1.0 Chapter 6: Using the HTML Helpers)?</p> <blockquote> <p>If you're writing a third-party library(as opposed to a web application) that uses the HTML helpers, never call the overloads that accept anonymous objects. Always call the overloads that accept dictionaries. Otherwise, web application authors that consume your library are likely to experience SecurityExceptions.</p> </blockquote>