Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ShortNameAttribute.cs
1using System;
2
4{
8 [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
9 public class ShortNameAttribute : Attribute
10 {
11 private readonly string name;
12
17 public ShortNameAttribute(string Name)
18 : base()
19 {
20 this.name = Name;
21 }
22
26 public string Name => this.name;
27 }
28}
This attribute defines a short name for a member (field or property). Short names are preferred for s...
ShortNameAttribute(string Name)
This attribute defines a short name for a member (field or property). Short names are preferred for s...