0
votes
1answer
19 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.Colle …
0
votes
0answers
15 views
Creating a ‘label designer’ in C Sharp
Hi, I'm trying to create a fairly simple label printer to complement the services offered on our website (processing PayPal payments using IPN and outputting a CSV file containing …
1
vote
4answers
93 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.
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#.
No …
1
vote
3answers
149 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 languag …
1
vote
4answers
102 views
Can method parameters be dynamic in C#
In c# 4.0, are dynamic method parameters possible, like in the following code?
public string MakeItQuack(dynamic duck)
{
string quack = duck.Quack();
return quack;
}
I've ma …
5
votes
6answers
135 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<strin …
0
votes
0answers
11 views
Training the Neural Network using EmguCV?
i m trying to do a project in image processing. I found the tutorial from here using EmguCV.but i could not understand that. how the NN be trained using that library? i ll be very …
0
votes
4answers
57 views
How to learn programming for Web Development using microsoft technologies
i am programmer but not good i am working with c# , asp.net and MVC too. so how i can improve our coding skill for develop a better web apps. means how can i learn it.
1
vote
2answers
82 views
Book to learn about the new features in C#/.NET 4.0?
I'm looking for an in-depth book that talks about, and only about, the new features in version 4.0 of .NET and C#.
There are some good books, that are/will be published and talk a …
3
votes
3answers
205 views
C# 4.0, Methods on the fly?
With the introduction of things like duck typing, I would love it if I compose object methods on the fly, besides extension methods. Anybody know if this is possible? I know that …
7
votes
6answers
220 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 fi …
0
votes
3answers
68 views
.NET 4 Profiler?
Does anyone know of a profiler that works with .NET 4 (beta 2)? I normally use the EQATEC profiler but it doesn't seem to be working with .NET 4 executables.
0
votes
2answers
44 views
Migrate from VS2005 to VS 2010 directly
Hi,
Our project is currently developed in C#2 , VS2005.
We were thinking of migrating to VS2008 and C#3.
Do you think it might be a better idea to move directly to VS2010 instead? …
3
votes
5answers
125 views
Is the dynamic keyword meant to be *only* used with dynamic languages?
I attended Code Camp 12 recently, and a speaker there said that the new dynamic keyword in C# 4.0 should only be used for interopping with dynamic languages. I think he also said …
