Exemplo n.º 1
0
 /// <summary>
 /// Generates a new random <see cref="Quint32"/>.
 /// </summary>
 public static Quint32 NewQuint()
 {
     return(new Quint32(QuintHelper.RandomUint()));
 }
Exemplo n.º 2
0
 /// <summary>
 /// Returns a <see cref="System.String" /> that represents this quint.
 /// </summary>
 public override string ToString()
 {
     return(QuintHelper.FromUint(_value, Separator));
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Quint32"/> struct.
 /// </summary>
 /// <param name="quint">The quint.</param>
 public Quint32(string quint) : this()
 {
     _value = QuintHelper.ToUint(quint, Separator);
 }