Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 771 Bytes

README.md

File metadata and controls

28 lines (17 loc) · 771 Bytes

serverSharp

webserver written in C#.

server output

image

page render

image

image

notes

server uses System.Globalization; for determining the correct local time of the host:

DateTime currentDateTime = DateTime.Now;
   string formattedDateTime = currentDateTime.ToString("yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture);

you can change the port by changing int port variable. the port is set to 5050 by default:

private static int port = 5050;