The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
13 views

GWT isAssignableIssue

CustomSerializer class isAssignableFrom giving true in one application and false in one application when given null. In the application where it gives false it goes on to serialize using the ...
3
votes
0answers
36 views

Java isAssignableFrom Confusion [duplicate]

I'm working with Java's isAssignableFrom method to create a sort of dynamic method calling for events in my program. In short, I'm given an array of Class<?> and a Method object, and I must ...
2
votes
1answer
87 views

Lists, Reflection, IEnumerable, and a configuration issue

I am attempting to use reflection to detect collections such as List<T>. Ultimately I need to operate without an instance available (i.e. via typeof only), and would like to detect collections ...
0
votes
1answer
105 views

RemoveAll predicate using identification via IsAssignableFrom

I implemented an extension method to List<T>. In that extension method, there is a predicate where I fail to express what I want the predicate to do. I formulated a set of tests to elaborate my ...
1
vote
4answers
703 views

Creating read-only (public) class members in C++

I'm coming from a background in languages like Actionscript 3 where we have a special way of defining a member variable as both an instance and a method for setting/fetching the value of a protected ...
2
votes
1answer
282 views

Difference between isSubtype and isAssignable for TypeMirror

In the documentation for the utility interface Types, of which an instance must be made available to an annotation processor for Java SE 6 or 7 by the compiler, there are two methods which interest me ...
0
votes
2answers
884 views

Type.IsAssignableFrom() bug

I'd like to load some plugin (C# assembly) at runtime and use some of the classes implementing a certain interface inside each of them. So I wrote a base assemby (Interfaces.dll) in which I declare ...
21
votes
4answers
3k views

Use of IsAssignableFrom and “is” keyword in C#

While trying to learn Unity, I keep seeing the following code for overriding GetControllerInstance in MVC: if(!typeof(IController).IsAssignableFrom(controllerType)) { ... } this seems to me a ...
149
votes
10answers
94k views

What is the difference between instanceof and Class.isAssignableFrom(…)?

Which of the following is better? a instanceof B or B.class.isAssignableFrom(a.getClass()) The only difference that I know of is, when 'a' is null, the first returns false, while the second ...
8
votes
5answers
2k views

IsAssignableFrom() returns false when it should return true

I am working on a plugin system that loads .dll's contained in a specified folder. I am then using reflection to load the assemblies, iterate through the types they contain and identify any that ...