10
votes
4answers
246 views
How do I express a void method call as the result of DynamicMetaObject.BindInvokeMember?
I'm trying to give a short example of IDynamicMetaObjectProvider for the second edition of C# in Depth, and I'm running into issues.
I want to be able to express a void call, and I'm failing. I'm …
10
votes
1answer
143 views
Is PIA embedding broken in .NET 4.0 beta 2?
A while ago, I wrote some Word interop examples in Visual Studio beta 1, and set the reference to Microsoft.Office.Interop.Word to be embedded (set the "Embed Interop Types" = true in the reference …
0
votes
2answers
35 views
Mocking Framework with C# 4.0 Support?
Anybody know of a mocking framework that supports C# 4.0? Doesn't matter which one ATM, just need something that will work.
0
votes
5answers
65 views
How to Iterate Through Array in C# Across Multiple Calls
Hi Guys,
We have an application where we need to de-serialize some data from one stream into multiple objects.
The Data array represents a number of messages of variable length packed together. …
0
votes
3answers
66 views
Best way to fade in/out image
What is the best (least resource heavy) way to fade an image in and out every 20 seconds with a duration of 1 second, against a black background (screensaver), in C# ?
(an image about 350x130px).
I …
1
vote
1answer
38 views
Unit Testing interface contracts in C#
Using the Code Contracts tools available in VS2010 Beta 2, I have defined an interface, a contract class for that interface and two classes that implement the interface.
Now when I come to test the …
47
votes
20answers
2k views
Am I getting left behind by not using the new features of the .NET framework (.NET 3.0 & 3.5)?
Where I work I see a lot of otherwise very talented C++ developers produce ugly C# code, purely because they are not as familiar with the .NET framework and the features of C#.
Now I only started …
3
votes
1answer
78 views
C# 4.0: Why MethodBag when there’s ExpandoObject?
I don't understand, why use dynamic MethodBags when I can use ExpandoObject? What am I missing here?
0
votes
1answer
28 views
converting image into matrix and vice versa???
Please tell me how to convert image into matrix of pixels and vice versa...using opencv??
0
votes
1answer
27 views
IronPython ScriptRuntime equivalent to CPython PYTHONPATH
The following import works inside ipy.exe prompt but fails using IronPython ScriptRuntime inside a C# 4.0 program.
import ConfigParser
C# code:
using System;
using System.Collections.Generic;
…
5
votes
6answers
181 views
What are the true benefits of ExpandoObject?
The ExpandoObject class being added to .NET 4 allows you to arbitrarily set properties onto an object at runtime.
Are there any advantages to this over using a Dictionary<string,object>, or …
0
votes
1answer
46 views
WorkflowElement in Visual Studio 2010 Beta 2
I've downloaded beta 2 of visual studio and followed various tutorials (http://bloggersguides.net/media/p/188.aspx) regarding the creation of custom activities for Workflow. In all of the examples the …
1
vote
3answers
158 views
Unmodifiable lists in C#
In Java, one can use the Collections#unmodifiableList() method to create an unmodifiable list from an existing List object. Is there any counterpart in C# ? I'm new to the language and haven't been …
1
vote
4answers
95 views
i cant understand the following code..
Matrix<float> trainData2 = trainData.GetRows(intVar >> 1, intVar, 1);
intVar is integer type...
please help me to understand this code.
7
votes
6answers
265 views
Difference between CLR 2.0 and CLR 4.0
I have read countless blogs, posts and StackOverflow questions about the new features of C# 4.0. Even new WPF 4.0 features have started to come out in the open. What I could not find and will like to …
