Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ISO_3166_Country.cs
2
4{
8 public class ISO_3166_Country(string Name, string Alpha2, string Alpha3, int NumericCode, string DialCode, EmojiInfo? EmojiInfo = null)
9 {
10 public string Name { get; private set; } = Name;
11 public string Alpha2 { get; private set; } = Alpha2;
12 public string Alpha3 { get; private set; } = Alpha3;
13 public int NumericCode { get; private set; } = NumericCode;
14 public string DialCode { get; private set; } = DialCode;
16 public string FlagAndName => this.EmojiInfo.Unicode + " " + this.Name;
17 }
18}
Contains information about an emoji.
Static class that provide methods for managing emojis.
static readonly EmojiInfo Emoji_waving_white_flag
:waving_white_flag: 🏳 waving white flag
class ISO_3166_Country(string Name, string Alpha2, string Alpha3, int NumericCode, string DialCode, EmojiInfo? EmojiInfo=null)
Representation of an ISO3166-1 Country