python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to use types as values in Rust? / Metatypes
I’m working on the database component of my app. The idea is to describe objects using a Record structure which stores an identifier for fetching the object, and also specifies the object type.
struct...

Yakov Manshin
Votes: 0
Answers: 2
Limit Unknown excel range and stop IEnumerable function
I am working on an Excel based C# project where I have to put a whole column of data into a single dimensional array but I am unable to find proper way to do so.
The code I have used is although worki...
ankit goel
Votes: 0
Answers: 1
Instantiate generic classes with different constructor arguments
I have two similar classes, Foo and Bar
public class Foo{
private String name;
public Foo(String name){
this.name = name;
}
}
public class Bar{
private String name;
public Bar(String...
andrestascon
Votes: 0
Answers: 1
Unknown Generic in C#
I got the following Problem:
Is there a way to get all Classes that implement the IMatcher Interface in a List ?
The Generics T U cannot be set as Unknown. In Java we can use the "?", but in...

Daniel Fntic
Votes: 0
Answers: 3