Replace a Web API Response with a Custom JSON
Language: .NET, Expertise: Advanced - Learn how to get the Web API to return custom JSON......»»
Unit Test Non-Public Methods in C# Unit Tests
Language: .NET, Expertise: Advanced - Learn how to expose non-public methods to the test project......»»
Use an Extension Method to Update All Items in a List
Language: .NET, Expertise: Intermediate - Learn how to use an extension method to update all of the items in a list with C#......»»
Use Yield Instead of a List in C# for Iterations on Collections
Language: .NET, Expertise: Intermediate - Learn how to use the yield keyword to hold and return the data to the caller......»»
Use LINQ Methods to Implement Paging in C#
Language: .NET, Expertise: Intermediate - With the Skip and Take methods in LINQ, paging has become a lot easier. Learn how to use them to provide paging to your items......»»
Reading Text from an Image in C# Using Tessaract.Net SDK
Language: .NET, Expertise: Advanced - See how to use this SDK to easily convert images to text......»»
Extract Faces Using Amazon Rekognition
Language: .NET, Expertise: Intermediate - Learn how to detect and extract faces with Amazon Rekognition......»»
Pick N Items in an Array in a Specified Order
Language: .NET, Expertise: Beginner - Learn how to use the OrderBy operator to pick a selected number of items in a given order......»»
Check Whether an Input Argument Is Null in C#
Language: .NET, Expertise: Intermediate - Use this extension method in C# to check whether or not an input argument is null, and throw error if necessary......»»
Pick the First Few Elements in an Array in C#
Language: .NET, Expertise: Intermediate - Explore how to use a simple statement to pick the first few elements of an array in C#......»»
Extension Method to Update All Items in a List
Language: .NET, Expertise: Beginner - See how to use an extension method in C# to update all items in a list......»»
Use the Namespace Alias for Better Readability
Language: .NET, Expertise: Intermediate - See how C# provides a way to shorten the namespaces for better readability......»»
Format the Currency for a Culture in C#
Language: .NET, Expertise: Intermediate - See how to use the CultureInfo class in C# to format values based on a culture......»»
Convert a Date to ISO 8601 Format in C#
Language: .NET, Expertise: Beginner - See an example of how to convert a date time to ISO 8601 format......»»
Countdown Timer Function in C#
Language: .NET, Expertise: Beginner - Learn more about how to use a function in C# to discover how many more days are left in a given countdown......»»
Convert a String to a Byte Array
Language: .NET, Expertise: Intermediate - Explore how to convert a string to a byte array......»»
Split a Concatenated String with a Delimiter
Language: .NET, Expertise: Beginner - See how to split a concatenated string with a delimiter and remove empty entries......»»
Check Whether or Not an IP Is Valid in C#
Language: .NET, Expertise: Beginner - Learn more about a short function that validates a given IP address......»»
Convert Hex to RGB in C#
Language: .NET, Expertise: Intermediate - Learn how to replace a hex string with RGB color in C# using the system.globalization namespace......»»
Use BitConverter Class to Convert a Byte Array
Language: .NET, Expertise: Intermediate - See how BitConverter's ToString method can be used to convert a byte array to a string......»»