DotNetShoutout - Stories tagged with casting
5
Shouts

SSIS - Expressions - Sudeep's Domain

posted by http://rajsudeep.blogspot.com/http://rajsudeep.blogspot.com/ 1135 days, 16 hours, 1 minute ago
Thursday, April 15, 2010 7:14:04 AM GMT
This post shows the use of expressions one of the most useful aspects of SSIS. There are sample expressions as well that you could use. (more)
category: Data | clicked: 0 | comment | | source: beyondrelational.com
tags: Expressions, casting, SSIS
3
Shouts

Casting – the escape from strong typing - Chapter 4 Deep C#

posted by mikeukmikeuk 1271 days, 12 hours, 18 minutes ago
Monday, November 30, 2009 10:57:01 AM GMT
Casting is an odd business that has found its way into many modern languages via C and C++. Both Java and C# make use of it to allow programmers to escape the confines of strong typing without being able to create anything too unsafe. The big problem is that it confuses two aspects of dealing with variables – type and representation. (more)
category: How To | clicked: 0 | comment | | source: www.i-programmer.info
tags: C#, casting, Type System
9
Shouts

Casts using “as” (Pitfalls and Best Practices to Prevent Them #5)

published 1272 days, 3 hours, 30 minutes ago posted by winSharp93winSharp93 1274 days, 6 hours, 59 minutes ago
Sunday, November 29, 2009 7:45:00 PM GMT Friday, November 27, 2009 4:15:56 PM GMT
Well – “as” is faster to type than a “real” cast using two brackets and has the same result. Really? (more)
category: How To | clicked: 1 | comment | | source: winsharp93.wordpress.com
tags: Pitfalls, C#, casting, As, Debugging, Codingstyle