'How To Spilte List Of Json

How to splite this json using c#

[
  {
    "name": "First",
    "Custnumber": "123SC"
  },
  {
    "name": "Second",
    "Custnumber": "67BC"
  },
  {
    "name": "Third",
    "Custnumber": "99ABC"
  },
  {
    "name": "Fourth",
    "Custnumber": "123SC"
  }
]

to

{
  "name": "First",
  "Custnumber": "123SC"
},
{
  "name": "Second",
  "Custnumber": "67BC"
},
{
  "name": "Third",
  "Custnumber": "99ABC"
},
{
  "name": "Fourth",
  "Custnumber": "123SC"
}


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source