Search Results

1
vote

What’s the best way to tell if a method is a property from within Policy Injection?

You can also check IsSpecialName is true. this will be true in a property (amongst other things) At the il level the methods are exposed as follows (using Environment.ExitCode as example): …
-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

Does auto-implemented properties support attributes?

Note also that any Automatic property will have the CompilerGeneratedAttribute applied to it as well. …
1
vote

Is possible to cast a variable to a type stored in another variable?

Your original question was flawed in that you ask to treat a variable as a type which is not known at compile time but note that you have string defined on the left hand side when you declare your …
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 …
0
votes

How to embed a Java control on a C# winforms control?

If the control is not a custom control and is just something in swing you may find it available in Microsoft's Visual J# (either Version 2.0 or the supplemental add in for 1.1 …
0
votes

Access to a single pixel in C#

If you are doing 3d it would make sense to make use of the hardware acceleration provided by almost every GPU under the sun these days. IF you are happy to stay with windows specific apis then Dire …
2
votes

reinterpret_cast in C#

c# supports this so long as you are willing to use unsafe code but only on structs. for example : (The framework provides this for you but you could extend this to int <-> uint conversio …
7
votes

Access to Compiler’s errors and warnings

If you use the CodeDomProvider using System.CodeDom; using System.CodeDom.Compiler; using Microsoft.CSharp; // the compilation part // change the parameters as you see fit Compile …
3
votes

Licensing your code in Mono

http://www.mono-project.com/MoMA will show you areas not supported the …
1
vote

What is - Single and Multiple Dispatch (in relation to .NET)?

In OO languaes the text: SomeType b; a = b.Foo(c, d) Means that the object b is being passed a message Foo with the parameters c and d. Single dispatch means that …
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. …
1
vote

Method chaining generic list extensions

Here's a generator implementation public static IEnumerable<string> GetInterests(Customer customer) { foreach (Characteristic c in customer.Characteristics) { …
1
vote

How do I find out if a class is immutable in C#?

You cannot, you can only guess. If all fields are readonly the the instances will be immutable once the constructor finishes. This is important, if you had the following it would appear mutable to …
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. …

1 2 3 4 5 17 next
15 30 50 per page