-1
votes
TypeLoadException on x64 but is fine on x86 with structlayouts
If you are wanting to place structs within other structs which are themselves Layoutind.Explict you should Use an explicit Size value (in bytes) if you expect them to work in different bitness mode …
1
vote
Singleton with finalizer but not IDisposable
If the unmanaged resource is released only on application exit you don't even need to worry with a finalizer since the process unload should deal with this for you anyway.
If you have multi …
1
vote
Performance of Arrays vs. Lists
if you are just getting a single value out of either (not in a loop) then both do bounds checking (you're in managed code remember) it's just the list does it twice.
See the notes later for why thi …
0
votes
Allocating unmanaged memory in managed .NET code
You are
assuming that the data array is at least as big a size. This is a possible bug waiting to happen
Not checking the result of malloc()
You may …
1
vote
Best serialization library for .net with ability to deserialize inheritance correctly
If you can handle the additional verbosity going to a serializer which embeds the type information into the resulting stream is probably for the best.
.Net provides the …
2
votes
Does GetCustomAttributes() preserve the attribute order in .NET?
The lexical ordering of elements in a file is absolutely not guaranteed to be persisted in anyway in the resulting CIL assemblies nor to be respected in the results returned from R …
2
votes
Is it possible to customize a WindowsForms ColorDialog in .NET?
Since the class is not sealed you could extend it and attempt to modify its behaviour but the underlying display of the dialog is via creation of the plain win32 dialog and hooking into it's messag …
3
votes
In F#, can I have a function that is called on one thread, but returns on another?
You seem to have some misunderstanding of how threads work.
You cannot enter a function in one thread and exit it in another (Threads have separate stacks and the stack maintains what function you …
4
votes
scala -> use .net (linq) and java (various frameworks) in the same program?
When you compile scala you give it either -target:msil or -target:jvm-X.X (the default being java). This means that you could attempt to make something cross compilable (that would work with both …
5
votes
How to find if native dll is compiled as x64 or x86?
for an unmanaged dll you need to first check if it is a 16bit dll (hopefully not)
Then check the IMAGE_FILE_HEADER.Machine field.
…
0
votes
Do C# Generics Have a Perfomance Benefit?
Not only can you do away with boxing but the generic implementations are somewhat faster than the non generic counterparts with reference types due to a change in the underlying implementation. …
3
votes
Why do I need the Singleton design pattern?
Singleton's are often simply used to justify the existence of some global state.
If you have global state accept it and don't feel the need to wrap it in a pattern like singleton except per …
1
vote
In-memory DBMS’s for unit testing
Given that you state:
I should also mention that I have tied
myself to TSQL since I'm only ever
going to be using a Microsoft
platform.
Then Usin …
7
votes
Memory leak while using Threads
You have two issues, both separate:
In Watcher.Changed's handler you call Thread.Sleep(3000);
This is poor behaviour in a callback of a thread you do not own (since it is being supplied by …
3
votes
C# Unsafe/Fixed Code
reinterpret_cast style behaviour
If you are bit manipulating then this can be incredibly useful
many high performance hashcode implementations use UInt32 for the hash value (this ma …
