1
vote
5answers
150 views
class with valueTypes fields and boxing
I'm experimenting with generics and I'm trying to create structure similar to Dataset class.
I have following code
public struct Column<T>
{
T value;
T originalVal …
0
votes
4answers
463 views
ServiceProvider, cache etc. done with generics without cast
I'm talking about c# 3.5 3.0.
I know how to do it when cache or ServiceProvider can have only one instance for the whole application. In this case ServiceProvider can look like this
…
0
votes
4answers
708 views
wglCreateContext in C# failing but not in managed C++
I'm trying to use opengl in C#. I have following code which fails with error 2000 ERROR_INVALID_PIXEL_FORMAT
First definitions:
[DllImport("user32.dll", CharSet = CharSet.Auto, …
1
vote
1answer
142 views
WeakReference Bug ?
[TestMethod]
public void Memory()
{
var wr = new WeakReference("aaabbb");
Assert.IsTrue(wr.IsAlive);
GC.Collect();
GC.Collect();
GC.Collect();
GC.Collect();
GC.C …
0
votes
0answers
178 views
CryptGetProvParam PP_ENUMCONTAINERS shows me only default certificate on smart card
I have Gemalto.NET Smart Card.
I imported 2 certificates into it using Gemalto tools, which use sconnect (which as I suspect use Crypto API …
3
votes
3answers
177 views
Is c# compiler deciding to use stackalloc by itself ?
I found a blog entry which suggests that sometimes c# compiler may decide to put array on the stack instead of the heap:
…
0
votes
1answer
98 views
C# property refactoring - Should I care?
I have following code:
public class Header
{
Line Lines { get { ...}}
public ICryptographer GetCryptographer(FieldGroup group)
{
...
}
}
public class Line
…
0
votes
1answer
45 views
custom mscorlib.dll without native code
Is it possible to build custom mscorlib.dll without any use of native code (pinvoke allowed :-)?
I've tried a little experiment this weekend to see how hard it would be to do it and had fol …
13
votes
Most wanted feature for C# 4.0 ?
Much much better type inferrence for generic methods.
Example: F#
I dont want to use <,,,>() and make the code less readable when compiler can easily deduct the types from method …
1
vote
How do you check if a folder is accessible over a network in c#
Duplicate
see this. I Saw this on the right side in "related questions" :-)
…
0
votes
ServiceProvider, cache etc. done with generics without cast
I think I found the solution. Here you have my implementation of ServiceProvider
You can find the description of it on …
4
votes
wglCreateContext in C# failing but not in managed C++
Found solution.
Problem is very strange ugly and really hard to find. Somwhere on the internet I found that when you are linking opengl32.lib while compiling c++ application it must be placed b …
1
vote
.net Immutable objects
If I understood you correctly, you want Entity to be immutable.
If so, then the test should be changed to
var setterCount = (from s in typeof(string).GetProperties(BindingFlags.Publ …
2
votes
What’s the reason of using the Object type instead of an actual type for events?
I think it's because of historical reasons mixed with avoiding code duplication.
In .Net 1.0 there was no generics, so for each type that can throw event you was forced to define the event …
0
votes
Can a Generic Method handle both Reference and Nullable Value types?
public static T Get<T>(this IDataRecord rec, Func<int, T> GetValue, int ordinal)
{
return rec.IsDBNull(ordinal) ? default(T) : GetValue(ordinal);
}
or more …
