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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>WebSocket Client</title> | |
</head> | |
<body> | |
<h1>WebSocket Client</h1> | |
<div id="messages"></div> | |
<input type="text" id="messageInput" placeholder="Type a message"> |
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; | |
namespace MessageBoxFlagDemo | |
{ | |
class Program | |
{ | |
public static class MBFlags | |
{ | |
// Message Icon | |
public const uint MB_ICONINFORMATION = 0x00000040; |