Abdullahi Salawudeen
About Abdullahi Salawudeen
Abdullahi is a full-stack developer and technical writer with over 5 years of experience designing and implementing enterprise applications. He loves taking on new challenges and believes conceptual programming theories should be implemented in reality.
howto · 2024-02-16
How to Exit a Function in C#
In this tutorial, learn the different methods of exiting a function in C# with examples. Use the break, continue, goto, return, and throw exception statements.
howto · 2024-02-16
How to Convert Boolean to Integer in C#
In this tutorial, learn the different methods of converting boolean to integer data type in C# with examples. Use the Convert.ToInt32 keyword.
howto · 2024-02-16
Binary Search Tree in .Net 4.0
In this tutorial, understand the implementation of binary search tree in .net 4.0. Use the Sorted Set<T> class.
howto · 2024-02-12
How to Convert IEnumerable to List in C#
In this tutorial, learn the different methods of converting IEnumerable to list in C#. Use the ToList(), ToArray(), and AsEnumerable() method.
howto · 2024-02-02
How to Sum Up an Array of Integers in C#
In this tutorial, learn the different methods of summing up an array of integers in C# with examples. Use the sum(), Array.foreach, and the Enumerable.Aggregate() method.
howto · 2024-02-02
How to Convert Char to Int in C#
This article tackles about the different methods in C# to convert char datatype to int datatype.
howto · 2024-02-02
How to Deserialize XML to Object in C#
In this tutorial, learn the different methods of deserializing an xml to C# object with examples. Use the paste special feature of Visual Studio, xsd tool, and type the equivalent class in C#.
howto · 2024-02-02
How to Crop an Image in C#
In this tutorial, learn the different methods of drawing and editing an image in C# with examples. Use the Graphics.DrawImage() method.
howto · 2023-10-12
The if Statement With Multiple Conditions in C#
In this tutorial, you will learn the operators in C# and the different methods of using if statement with multiple conditions in C# to return the same statement.