Skip to main content

Questions tagged [dynamic]

7 votes
5 answers
6k views

C# is considered a statically-typed language. However, it contains keywords such as: var, which infers the type at compile time, and dynamic, which determines the type at runtime. Is this a ...
X Y's user avatar
  • 321
0 votes
1 answer
108 views

I need to send jobs to worker queues according to resource usage and other metrics like how many jobs have been processed and how successful they were. There is also the need to “weight” these ...
Hugo's user avatar
  • 11
3 votes
1 answer
458 views

I have a system that is generating internal events for objects. I am extending their debugger to display a human-readable version of the events sent to the debugger. For instance, the system will ...
strattonn's user avatar
  • 131
0 votes
1 answer
220 views

I have a web service that implements Repository Pattern and I was wondering if there is a design in C# that can remove the need for 'dynamic' when injecting it in my method. public interface ...
Vince Orio's user avatar
5 votes
3 answers
29k views

I want to tag the values of variables with a "quality" attribute that can be changed dynamically during my programs execution. My first thought was to abuse the standard attribute functionality by ...
Peter M's user avatar
  • 2,097
1 vote
1 answer
599 views

Basically, title. This is just me trying to clarify part of the GPL for myself. Let's say I'm developing a program that compiles and runs on a non-free runtime engine. I'm perfectly willing to ...
Chris Iverson's user avatar
0 votes
2 answers
90 views

I'm an owner of some Product, where I have different clients who use that product, and the attributes of that product alter the experience that my clients have on my page. For an example, lets say ...
SnG's user avatar
  • 115
2 votes
1 answer
493 views

Recently I got interested in scheduling problems or rather dynamic scheduling problem. The problem is that I want to develop some kind of layer in my application which will be polling circa about 50-...
Apple Pie's user avatar
20 votes
3 answers
6k views

I'm developing a physics simulation, and as I'm rather new to programming, I keep running into problems when producing large programs (memory issues mainly). I know about dynamic memory allocation and ...
Drummermean's user avatar
9 votes
2 answers
8k views

If it possible IList <dynamic> = new List <dynamic>; or class A <T> { } class B: A <dynamic> { } Why it is not possible to do class U: IEnumerable <dynamic> {} ?
Yarl's user avatar
  • 298
-1 votes
2 answers
1k views

I am building a support web front-end for our team from where we can perform various support functions for a number of different sites at which our products run. This typically involves running some ...
Neville's user avatar
  • 119
-1 votes
1 answer
601 views

I am doing a tech test for a job (Web Development) and in the test I need to get data from an API and there is this conditions for the server: Focus on client-side (AngularJS) nodeJS The server must ...
z_inx's user avatar
  • 113
0 votes
2 answers
284 views

A value type is one whose instances are themselves saved in variables. A reference type is a type whose instances are saved somewhere and variables only hold the addresses of the instances. Some ...
Aviv Cohn's user avatar
  • 21.6k
1 vote
3 answers
1k views

Is there any consensus among programmers (or a common convention) on the "right way" to deal with the addition or deletion of one or more elements of a dynamic (mutable) array at runtime while ...
ColdCold's user avatar
  • 119
1 vote
1 answer
2k views

I have a message class that holds the name of a destination, and a generic variable acting as the message payload public class Message<T> { public string Destination public T Payload ...
9a3eedi's user avatar
  • 2,099

15 30 50 per page