Tag: Development

Community

Using Large Objects in .NET

(Jason Price) In this article, a sequel to a previous article on using database objects in .NET, you will learn how to use large objects in Visual Basic .NET (VB.NET) and Visual C# .NET (C#). Specifically, you will earn how to read and write to large objects (LOBs) using .NET. You will also lear

Community

Solving Problems with Recursion

(Mohamed Saad) Recursion is a way to solve a problem by…reducing it to the same problem. What? It may be counterintuitive, but many turn-based games (including chess) use exactly this technique to make a computer player “think.” Mohamed Saad explains the concept, along with when (and when not) to