Most voted "dynamic" questions
7 questions
Sort by count of
-
3
votes1
answer148
viewsConvert Dynamic to query string
Is there any more "elegant" way to convert a dynamic for a query string? I’m currently doing with several Replace() but it’s not quite what I wanted. string data = new { email = email, password =…
-
2
votes1
answer193
viewsWhat’s the difference between Dynamic and Object
What’s the difference between using Dynamic and Object on Dart? For example, functions that do not know the type of return: Future<dynamic> getQuery ou Future<Object> getQuery To make…
-
1
votes1
answer61
views"Dynamic" data type is not the same as native data type
I’m trying to create a struct that has one of its attributes having its type of dynamic or varied data, I need ( when running the struct constructor) to be defined the data type of it, and it should…
-
1
votes1
answer174
viewsDifference between Divide and Conquer, Decrease and Conquer and Dynamic Programming
What’s the difference between algorithm design techniques Divide and Conquer and Decrease and Conquer? To divide is recursive and the decrease nay? Some example for the decrease? And dynamic…
-
1
votes0
answers33
viewsConvert Dynamic to another type
I need to convert a Dynamic variable to another type in Runtime. The type I want to convert is stored in another variable (I don’t know what type at development time). There’s something like this?…
-
0
votes1
answer75
viewsGenerate list dynamically with Linq
I have an API that uses Dotnet’s Dynamic to generate billets. The documentation is as follows: dynamic endpoints = new Endpoints("client_id", "client_secret", true); var body = new { items = new[] {…
-
0
votes1
answer43
viewsIs it possible to call members of a Dynamic class as a string?
using System; public class Program { public static void Main() { dynamic stud = new Student(); Console.WriteLine(stud.Name); } } public class Student { public string Name = "John"; } Output John Is…