A plain text script that is executed by a runtime interpreter.
Inheritance: Candidate
Exemplo n.º 1
0
 protected bool Equals(InterpretedScript other)
 {
     if (other == null)
     {
         return(false);
     }
     return(base.Equals(other) &&
            Equals(InterpreterVersions, other.InterpreterVersions));
 }
Exemplo n.º 2
0
 protected bool Equals(InterpretedScript other)
 => other != null && base.Equals(other) && Equals(InterpreterVersions, other.InterpreterVersions);
Exemplo n.º 3
0
 protected bool Equals(InterpretedScript other)
 {
     if (other == null) return false;
     return base.Equals(other) &&
            Equals(InterpreterVersions, other.InterpreterVersions);
 }