I have a number of classes and interface that are in the following structure interface Parser{} public class ParserA implements Parser{}
I am using the following method to output objects with their properties. It works great with most objects, but throws when I pass a HttpRequest object.
I have the following class hierarchy: public abstract class NumberRangeParameter<T extends Comparable<T>>
I am building a multiprotocol webservice using Zend_JSON_Server and Zend_XmlRpc_Server using PHP 5.2.6. and I am currently facing the problem, that the server is now announcing every single method fro
i have a problem with a newInstance call using Reflection in Android. My Interface: public interface IGiver {
Say, there is a class (A) which has a field (myField). The type of the field myField is an interface (I). Everything is public.
I have started using Table Valued Parameters in Sql Server 2k8 for batch operations. I liked this feature a lot and feel it came after a long wait.
I\'m trying to use Activator.CreateInstance to create an instance from a type that has an internal constructor, but it doesn\'t work,
I have an extension method I\'m trying to make generic, for message passing. public static ActionResult RedirectCompanyMessage<T>(this Controller controller, T mObject, Company company)
I\'m doing custom projections on Linq queries in Medium Trust and I get a MethodAccessException or TypeAccessException complaining about reflection and security rights.