Category: Programming

  • How to return multiple values from a method in C#

    How to return multiple values from a method in C#
    , ,

    There are typically 2 ways that we return values from a method, create a custom type or use multiple out parameters. Well, there is another way that this can be achieved and it’s by using a feature introduced in C# 7 called a tuple. A tuple is a value-type that lets you group data into… Read more

  • Convert JSON array string to table of integer values using SQL!

    ,

    In SQL Server, the OPENJSON function is typically used to parse JSON objects or arrays. If you have a JSON array containing a list of integer values, you can use OPENJSON to extract those values. Here’s an example: Let’s assume you have a JSON array like this: You can use OPENJSON as follows: In this… Read more