A dynamic type is a type that the compiler does not resolve; resolution of dynamic types is deferred until runtime.

learn more… | top users | synonyms

2
votes
1answer
89 views

Overloading methods based on unordered parameter sets

I have the following Shape hierarchy: public abstract class Shape { ... } public class Rectangle : Shape { ... } public class Circle : Shape { ... } public class Triangle : Shape { ... } I have ...
1
vote
1answer
138 views

MonoTouch UIViewController with dynamic type

I have a UIViewController in MonoTouch, defined together with a .xib as an iPad View Controller. If i change the UIViewController to use a dynamic type like this: public partial class CustomCount : ...
2
votes
1answer
390 views

dynamic casting at runtime vb.net

I would like to know if this is ok, lets say I have a class somewhere on my project and at some point I will need to cast an object to this class type or another but I can only know this at runtime, ...
0
votes
3answers
318 views

Converting dynamic to object

Here is my code: MyClass here = new MyClass(); IEnumerable<MyClass> vats = (IEnumerable<MyClass>)here.All(); The All() method returns IEnumerable<dynamic>. I want to convert it to ...
2
votes
2answers
168 views

Haskell — any easy way to put Data.Dynamic's in a Map?

I want to map Data.Dynamics to other Data.Dynamics. But, I can't write Map Dynamic Dynamic because there's no Ord Dynamic. Is there any solution (like a version of Dynamic whose toDyn function only ...
1
vote
1answer
454 views

OnMouse event Tooltip for @Html.Grid

I use MVC3 Grid to show Events. What I need is somehow integrate on mouse event for the "NAME" to show "Description" of the item. How do I can implement? Thanks for any clue!!! @{ var ...
5
votes
1answer
857 views

How to unbox a C# object to dynamic type

I'm trying to do something like this: void someMethod(TypeA object) { ... } void someMethod(TypeB object) { ... } object getObject() { if (...) return new TypeA(); else return new TypeB(); ...
4
votes
1answer
69 views

C# - Dynamic parameter causes compiler to think method return is dynamic

If I have a dynamic parameter the compiler seems to ditch the return type and think it's dynamic. For example: public MethodResult IsValid(object userLogin) { return new MethodResult(); } ...
0
votes
1answer
194 views

Change value of dynamic type in LINQ?

I have a problem with LINQ. I have a list of item and I want to change the Parent value of an orphan item to 0 with the following code: void Main() { var a = new List<Item> { new ...
3
votes
3answers
1k views

MethodBuilder.CreateMethodBody() problem in Dynamic Type creation

For an experiment, i am trying to read the method body (using GetILAsByteArray()) from source type and adding it to the new Type (Using CreateMethodBody()). My source class is simply this public ...