farooqkaiser
Name: farooqkaiser
Score: 870.07
Last Seen: 829 days, 2 hours, 22 minutes ago
Member Since: 7 August, 2009
Fairfeeds.com
atom rss
1
Votes

Web 2.0 | Dynamic Typing in C# 4.0

published 1006 days, 19 hours, 28 minutes ago posted by farooqkaiserfarooqkaiser 1016 days, 8 hours, 51 minutes ago
Monday, August 17, 2009 2:53:36 AM GMT Friday, August 07, 2009 1:30:42 PM GMT
C# 4.0 introduces a new static type called dynamic. When an instance variable is defined with the type dynamic, the compiler ignores the call and won't complain. These actions are picked up at runtime. Here are comparison with C# 3.0 and C# 4.0 using Dynamic Types. Let's say I have the following code in C# 3.0     // will not work in c# 3.0        object o = "farooq";        Console.Write(o.Insert(o.Length, " Kaiser "));        // will work in c# 3.0       object o = "farooq";       str... (more)
Category: Technology | Clicked: 1 | Comment | | Source: www.fairnet.com
Tags: .NET 4 .0, C# 4.0
1
Votes

Web 2.0 | Named and optional parameters in C# 4.0

published 1006 days, 19 hours, 28 minutes ago posted by farooqkaiserfarooqkaiser 1016 days, 8 hours, 53 minutes ago
Monday, August 17, 2009 2:53:36 AM GMT Friday, August 07, 2009 1:29:14 PM GMT
In this article, I will explore named and optional parameters in C# 4.0 features. Named and optional parameters are really two distinct features, and allow us to either omit parameters which have a defined default value, and/or to pass parameters by name rather than position. Named parameters are passed by name instead of relying on its position in the parameter list, whereas optional parameters allow us to omit arguments to member without having to define a specific overload matching. Let’s have a look... (more)
Category: Technology | Clicked: 3 | Comment | | Source: www.fairnet.com
Tags: .NET 4 .0, C# 4.0
Previous 1 2 Next