Tagged Questions
35
votes
4answers
5k views
How to make Databinding type safe and support refactoring
When I wish to bind a control to a property of my object, I have to provide the name of the property as a string. This is not very good because:
If the property is removed or
renamed, I don’t get a ...
33
votes
12answers
37k views
In C#, why can't a List<string> object be stored in a List<object> variable
It seems that a List object cannot be stored in a List variable in C#, and can't even be explicitly cast that way.
List<string> sl = new List<string>();List<object> ol;ol = sl;
results ...
30
votes
7answers
14k views
Generic type conversion FROM string
I have a class that I want to use to store "properties" for another class. These properties simply have a name and a value. Ideally, what I would like is to be able to add typed properties, so that ...
28
votes
7answers
9k views
Generic type checking
Is there a way to enforce/limit the types that are passed to primitives? (bool, int, string, etc.)
Now, I know you can limit the generic type parameter to a type or interface implementation via the ...
17
votes
3answers
295 views
Is there a name for this pattern? (C# compile-time type-safety with “params” args of different types)
Is there a name for this pattern?
Let's say you want to create a method that takes a variable number of arguments, each of which must be one of a fixed set of types (in any order or combination), and ...
15
votes
5answers
1k views
Why is the C# compiler emitting a callvirt instruction for a GetType() method call?
I am curious to know why this is happening. Please read the code example below and the corresponding IL that was emitted in comments below each section:
using System;
class Program
{
static ...
10
votes
4answers
137 views
Type-proofing primitive .NET value types via custom structs: Is it worth the effort?
I'm toying with the idea of making primitive .NET value types more type-safe and more "self-documenting" by wrapping them in custom structs. However, I'm wondering if it's actually ever worth the ...
10
votes
11answers
877 views
Discriminated union in C#
[Note: This question had the original title "C (ish) style union in C#"
but as Jeff's comment informed me, apparently this structure is called a 'discriminated union']
Excuse the verbosity of this ...
6
votes
3answers
142 views
Type-safe setting of objects with a dictionary that has a `Type` key
I have a generic dictionary of objects where the key is of type Type:
public class DynamicObject : IDictionary<Type, object>
The idea is that this object is shared in a plugin-based ...
6
votes
4answers
195 views
C++ vs. C# type safety
I was reading through the questions with most votes from the history tag and came across Most expressive algorithm for the history of computing class?, where the accepted answer states that C has ...
5
votes
4answers
334 views
Is VB.NET weakly typed compared to C#
Yesterday I was at an interview where my interviewer (who admittedly didn't claim to be an expert on the subject) stated that "VB.NET is more weakly typed then C#" - (At the same time he couldn't ...
4
votes
2answers
179 views
Why doesn't it matter that Null is not typesafe to those who like typesafety
I'm not really into type-safety as a concept but many consider it important for well written code and think that for some of the most important factors such as for code to scale well, be reusable, be ...
4
votes
3answers
114 views
Return an opaque object to the caller without violating type-safety
I have a method which should return a snapshot of the current state, and another method which restores that state.
public class MachineModel
{
public Snapshot CurrentSnapshot { get; }
public ...
3
votes
3answers
57 views
Replacing non type safe with type safe generic method
Im looking for a way to replace the following:
public class NonTypeSafe
{
private List<object> contents = new List<object>();
public List<object> Contents {get { return ...
3
votes
2answers
184 views
How to validate classes in a hierarchy in a generic type-safe way?
I'm stuck with what seemed to be a very simple task at the very beginning. I have a class hierarchy each class in which can define its own validation rules. Defining validation rules should be as ...
3
votes
6answers
718 views
Why I cannot derive from long?
My function returns some long value
which contains two values in lower and higher 32 bits.
I thought the best ways to handle return value
is to derive my custom type from long and provide
type ...
1
vote
5answers
178 views
What is the benefit of using type-safe collection classes?
I was wondering, why on some occasions i see a class representing some type's collection.
For example:
In Microsoft XNA Framework: TextureCollection, TouchCollection, etc.
Also other classes in the ...
1
vote
3answers
311 views
Best practices about creating a generic object dictionary in C#? Is this bad?
For clarity I am using C# 3.5/Asp.Net MVC 2
Here is what I have done: I wanted the ability to add/remove functionality to an object at run-time. So I simply added a generic object dictionary to my ...
0
votes
3answers
150 views
How does c# type safety affect the garbage collection?
I'm dealing with code that handles large buffers (> 100MB) and manipulation of these is done in unsafe blocks. I'd like to refactor these to avoid unsafe code. I'm wondering about the likely memory ...
0
votes
2answers
67 views
Possible to have compiler support (type safety) for avoiding double encoding for anti-XSS during Web development?
Is it possible to have compiler support to enforce the cleanup of data (XSS encoding)?
This question got me thinking about double encoding and the other times when encoding is needed. Seems like it ...
0
votes
1answer
307 views
TypeLoadException is Not Caught by try/catch
I am trying to re-create a TypeLoadException for demonstration purposes, so I have a ridiculously goofy library setup that looks like this:
TestProject --> TheLibrary [1.0]
\-> ...
0
votes
3answers
131 views
Make this reflection method call typesafe
class CustomerMessage
{
private string name;
private Dictionary<MethodBase, object> changeTrackingMethods =
new Dictionary<MethodBase, object>();
public int Id { get; ...
0
votes
7answers
399 views
Best way to design a multi-type object
Let's say I have a data object, but this object can hold one of several types of data.
class Foo
{
int intFoo;
double doubleFoo;
string stringFoo;
}
Now, I want to create an accessor. ...