This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// C++ 17 | |
#include <iostream> | |
#include <sstream> | |
#include <string> | |
#include <vector> | |
std::vector<std::string> split(const std::string& target, char c) | |
{ | |
std::string temp; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text; | |
/// <summary> | |
/// This class handles byte buffer arrays. | |
/// </summary> | |
public class MessageBuffer | |
{ | |
/// <summary> | |
/// The byte buffer. |