1
vote
5answers
46 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
67 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 …
0
votes
2answers
28 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
3answers
196 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 …
0
votes
2answers
32 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.
4
votes
6answers
95 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 …
47
votes
20answers
1k 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 …
0
votes
1answer
23 views
Dynamically add checkboxlist into placeholder and get the checked value of the checkboxlist
Hi,
I am creating an admin Page, in which checkboxlist(User list from DB)is to be created dynamically and its the checked users value is retrieved.
There are different types of u …
7
votes
6answers
166 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 …
3
votes
5answers
120 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 …
1
vote
2answers
57 views
Does the dynamic keyword in C# 4 permit certain previously impossible operations with generics?
The dynamic keyword in C# 4 introduces new ways to work with objects that weren't previously possible. How does this overlap with generics? Specifically, are there operations that …
0
votes
1answer
14 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 …
0
votes
1answer
18 views
.Net 4.0 Memory-Mapped Files verses RDMS Storage
I'm interested in people's thoughts comparing storing data in a traditional SQL based Database or utilising a Memory-Mapped File such as the one in the new .Net 4.0 runtime. The d …
4
votes
3answers
135 views
Code Contracts in .NET 4.0, no joy for non-nullable reference types fans?
I've been playing with Code Contracts on VS2008 (http://msdn.microsoft.com/en-us/devlabs/dd491992.aspx).
They surely are nice and provide a solid alternative to if-then-throw check …
0
votes
2answers
54 views
How do I test for typeof(dynamic)?
I've got a generic method TResult Foo<TSource, TResult>(IEnumerable<TSource> source) and if TResult is declared as dynamic I want to execute a different code path than …
