The .Net framework is a group of components that provide the developer with tools to support the creation of robust computer software programs. It is comprised of: Development frameworks – are components that let us resuse previously written and tested software. Such as ASP.Net, WPF, Silverlight, LINQ, ADO.Net, WCF, WinForms etc… Therea are some very […]
Read More →Category: .NET Fundamentals
Using the as keyword versus boxing in C#

When I convert one object to another using the keyword “as” and the original value is not of that type, the converted value simply becomes NULL. For example, if theItem is of type MessageBox, then row will be NULL. DataRowView row = theItem as DataRowView; However, when using this code, I.e. boxing. DataRowView row = […]
Read More →