1
vote
3answers
58 views
Cast concrete class to generic base interface
Here's the scenario i am faced with:
public abstract class Record { }
public abstract class TableRecord : Record { }
public abstract class LookupTableRecord : TableRecord { }
p …
1
vote
5answers
51 views
How to use generic class (or interface) in another generic class (or interface) with the same data type parameters without casting
I need the Cache class that keep the <TKey key, TValue value> pairs. And it is desirable that TKey can be any class that supports Serializable interface and TValue can be any …
1
vote
1answer
72 views
generic list question
I have my objects like this.
public class BaseTable
{
public int ID { get; set; }
public int ParentID { get; set; }
public string Description …
0
votes
5answers
93 views
Is it possible to choose a C++ generic type parameter at runtime?
Is there a way to choose the generic type of a class at runtime or is this a compile-time thing in C++?
What I want to do is something like this (pseudocode):
Generictype type;
i …
0
votes
1answer
24 views
error C2664 + generic classes + /Wp64
Hi! I've got the following lines of code:
p_diffuse = ShaderProperty<Vector4>(Vector4(1,1,1,1));
addProperty(&p_diffuse, "diffuse");
p_shininess = ShaderProperty<flo …
3
votes
2answers
82 views
C# compiler + generic code with boxing + constraints
Let's examine the MSIL code generated for the following generic method:
public static U BoxValue<T, U>(T value)
where T : struct, U
where U : class
{
return value;
}
…
0
votes
4answers
72 views
C++ generic classes & inheritance
Hi!
I'm new to generic class programming so maybe my question is silly - sorry for that. I'd like to know whether the following thing is possible and - if so, how to do it
I have …
0
votes
3answers
111 views
Casting generic collection to concrete implementation in C# 2.0.
Chosen Solution
Thanks for the help everyone. I've decided to do the following.
public static class PersonCollection
{
public static List<string> GetNames(RecordCollec …
2
votes
9answers
406 views
Generic collection algorithms in C#
Dear ladies and sirs.
Is there a library of generic collection algorithms for .NET? I would like to be able to write something like this:
IList<T> items = GetItemsFromSomeW …
0
votes
1answer
141 views
django model with two generic (content_type) foreign keys?
I'm trying to create a mapping table between two generic (content_type) references, one for "agents" and one for "resources".
So I take the usual way I make a generic foreign key …
0
votes
1answer
34 views
Generic Table<TEntity>
Hi everyone,
Trying to use Linq to SQL for a small project I'm working on at home. I have generated a the context code and all my entity classes using dbmetal.exe (from the DBLinq …
0
votes
2answers
61 views
How to Deserialise Xml into a Dictionary<int,string> object?
Is it possible to Deserialize the following piece of XML into a Dictionary<int,string> object?
XML:
<Config>
<DatabaseConnections>
<Connection Name="So …
2
votes
3answers
121 views
C# contructor in interface
Hello,
I know that we can't have constructor in an interface but here is what I want to do :
interface ISomething
{
void FillWithDataRow(DataRow)
}
…
0
votes
2answers
60 views
How to use rewriterule to redirect to a php file in the same folder?
I would like to take requests for /somefolder/style.css and handle them with /somefolder/program.php
So, I put the following in my .htaccess file:
rewriteengine on
rewriterule ^ …
0
votes
3answers
262 views
How can I create generic datacontext with linq
How i can create a generic datacontext on linq means If database change i don't have to change anything on linq datacontext.
Please specify the code or link
