Tagged Questions

21
votes
20answers
2k views

What do you think of the new C# 4.0 ‘dynamic’ keyword?

Hi all, I've just seen an article detailing the new C#4.0 'dynamic' feature previewed at the PDC 2008 and I wondered what people thought of it ? I'm wondering: what are good examples of the benefit …
17
votes
11answers
637 views

What is the correct way to write HTML using Javascript?

I see in some posts that people frown upon using document.write() in javascript when writing dynamic HTML. Why is this? and what is the correct way?
8
votes
6answers
590 views

Is there a best practice for generating html with javascript

I'm calling a web service that returns an array of objects in JSON. I want to take those objects and populate a div with html. Let's say each object contains a url and a name. If i wanted to …
8
votes
9answers
1k views

Problem with dynamic controls in .NET

Problem with dynamic controls Hello all, I'm wanting to create some dynamic controls, and have them persist their viewstate across page loads. Easy enough, right? All I have to do is re-create the …
7
votes
5answers
322 views

How will you use the C# 4 dynamic type ?

C# 4 will contain a new dynamic keyword that will bring dynamic language features into C#. How do you plan to use it in your own code, what pattern would you propose ? In which part of your current …
7
votes
7answers
263 views

Best practice for adding controls at run-time

When adding controls to a form at runtime, you can do either of the following: Button btn = new Button(); //... this.Controls.Add(btn); or Button x = new Button(); //... btn.Parent = this; I had …
7
votes
3answers
599 views

What’s the best source of information on the DLR (.NET 4.0 beta 1)?

I'm currently researching the 2nd edition of C# in Depth, and trying to implement "dynamic protocol buffers" - i.e. a level of dynamic support on top of my existing protocol buffer library. As such, I …
7
votes
5answers
709 views

Dynamic Scoping - Why?

I've learned that static scoping is the only sane way to do things, and that dynamic scoping is the tool of the devil, and results only from poor implementations of interpreters/compilers. Then I …
6
votes
4answers
287 views

What’s the difference between dynamic(C# 4) and var?

Hello, I had read a ton of articles about that new keyword that will ship with C# v4,but I couldn't make out the difference between a "dynamic" and "var". This article made me think about it,but I …
6
votes
5answers
419 views

Uses for both static strong typed languages like Haskell and dynamic (strong) languages like Common LIsp

I was working with a Lisp dialect but also learning some Haskell as well. They share some similarities but the main difference in Common Lisp seems to be that you don't have to define a type for each …
6
votes
5answers
956 views

Anonymous Type vs Dynamic Type

What are the real differences between anonymous type(var) in c# 3.0 and dynamic type(dynamic) that is coming in c# 4.0?
6
votes
2answers
250 views

Will the dynamic keyword in C#4 support extension methods?

I'm listening to a talk about C#4's dynamic keyword and I'm wondering... Will this feature be orthogonal to other .NET features, for example will it support extension methods? public static class …
5
votes
1answer
80 views

How to tell if a .NET assembly is dynamic?

When iterating through a set of assemblies, e.g. AppDomain.CurrentDomain.GetAssemblies(), dynamic assemblies will throw a NotSuportedException if you try to access properties like CodeBase. How can …
5
votes
4answers
318 views

C# 4.0, detect if a method is missing

I have a situation where i want to add LinePragmas to CodeDom objects. But some code dom objects have the LinePragma property and some don't. So I'm wondering if it's possible to use the dynamic …
5
votes
7answers
365 views

CSS on a separate file or not?

Which is a better option: to store CSS on a separate file or on the same page? Let's forget the fact that changing the CSS on a file makes it to apply all HTML pages directly. I am using dynamic …

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