Tagged Questions

7
votes
3answers
364 views

Anders Hejlsberg’s C# 4.0 REPL

During the last 10 minutes of Ander's talk The Future of C# he demonstrates a really cool C# Read-Eval-Print loop which would be a tremendous help in learning the language. Several .NET4 related …
3
votes
1answer
60 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
0answers
21 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
23 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; …
0
votes
0answers
21 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 customisable …
0
votes
0answers
13 views

Cannot understand EmguCV neural network library.

EmguCV provides a platform to train machine.i m wantin to using it trough ANN_MLP class. but i found it difficult to understand the parametes and variables of that class. please suggest me any link or …
0
votes
0answers
12 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 thankful...
1
vote
4answers
94 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.
3
votes
3answers
2k views

How is Generic Covariance & Contra-variance Implemented in C# 4.0?

I didn't attend PDC 2008, but I heard some news that C# 4.0 is announced to support Generic covariance and contra-variance. That is, List<string> can be assigned to List<object>. How could …
1
vote
4answers
114 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 many cool examples of …
5
votes
6answers
157 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 …
51
votes
3answers
4k views

What are the correct version numbers for C#?

What are the correct version numbers for C#? What came out when? Why can't I find any answers about C# 3.5? [This question is primarily to aid those who are searching for an answer using an incorrect …
0
votes
3answers
72 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.
1
vote
3answers
156 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 …
0
votes
4answers
58 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 2 3 4 5 7 next
15 30 50 per page