Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
HelpItem.cs
1using System;
2
4{
8 public class HelpItem
9 {
10 private readonly string syntax;
11 private readonly string[] paragraphs;
12
18 public HelpItem(string Syntax, params string[] Paragraphs)
19 {
20 this.syntax = Syntax;
21 this.paragraphs = Paragraphs;
22 }
23
27 public string Syntax => this.syntax;
28
32 public string[] Paragraphs => this.paragraphs;
33 }
34}
Contains an item of information about a command.
Definition: HelpItem.cs:9
string[] Paragraphs
Markdown description of syntax.
Definition: HelpItem.cs:32
HelpItem(string Syntax, params string[] Paragraphs)
Contains an item of information about a command.
Definition: HelpItem.cs:18