Files
Proftaak-RH-B4/RH-Engine/JSONParser.cs
Sem van der Hoeven 86a5ddfbc4 thanks johan
2020-09-16 11:43:03 +02:00

24 lines
525 B
C#

using System;
using System.Collections.Generic;
using System.Net.Sockets;
using System.Text;
using Newtonsoft.Json;
namespace RH_Engine
{
class JSONParser
{
/// <summary>
/// parses the given response from the server into strings
/// </summary>
/// <param name="msg">the message gotten from the server, without the length prefix</param>
/// <returns></returns>
public static string[] Parse(string msg)
{
return null;
}
}
}