- There are no warnings present in the project.
- There are no errors present in the project.
- There are no warnings that have been supressed.
- The entire solution can build and run locally on your machine.
- The code works.
This file contains hidden or 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
| /// @description Provides a NATS client-side protocol handler for a `Struct.Client`. | |
| /// @param {Function} send The function used to send messages through the socket. | |
| /// @param {Struct} options The NATS connection options. | |
| function NatsClientProtocol(send, options = {}) constructor | |
| { | |
| /// @type {Struct.Logger} | |
| /// @description The logger instance for logging protocol events. | |
| static _logger = new Logger(nameof(NatsClientProtocol)); | |
| /// @type {Function} |
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8" ?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <Title>NUnit Test Method</Title> | |
| <Shortcut>testmethod</Shortcut> | |
| <Description>Creates an NUnit test method template</Description> | |
| <Author>Your Name</Author> | |
| </Header> | |
| <Snippet> |
This file contains hidden or 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
| namespace RealTimeGDIExample | |
| { | |
| using System; | |
| using System.ComponentModel; | |
| using System.Drawing; | |
| using System.Windows.Forms; | |
| public class Display : Form | |
| { | |
| public Display(int width, int height, string title) |