You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
270 B

7 months ago
using HybirdFrameworkDriver.ChargerServer;
namespace WinFormStarter;
public partial class Form2 : Form
{
7 months ago
private Server _server;
public Form2(Server server)
{
7 months ago
_server = server;
InitializeComponent();
7 months ago
_server.Start(9000);
}
}