Beispiel #1
0
 public static void Read(this ViIStream IS, out LogicAuraCastorValueArray value)
 {
     IS.Read(out value.Element0);
     IS.Read(out value.Element1);
     IS.Read(out value.Element2);
     IS.Read(out value.Element3);
 }
Beispiel #2
0
 public static void Append(this ViOStream OS, LogicAuraCastorValueArray value)
 {
     OS.Append(value.Element0);
     OS.Append(value.Element1);
     OS.Append(value.Element2);
     OS.Append(value.Element3);
 }
Beispiel #3
0
 public static bool Read(this ViStringIStream IS, out LogicAuraCastorValueArray value)
 {
     value = default(LogicAuraCastorValueArray);
     if (IS.Read(out value.Element0) == false)
     {
         return(false);
     }
     if (IS.Read(out value.Element1) == false)
     {
         return(false);
     }
     if (IS.Read(out value.Element2) == false)
     {
         return(false);
     }
     if (IS.Read(out value.Element3) == false)
     {
         return(false);
     }
     return(true);
 }