コード例 #1
0
ファイル: BaZicInterpreter.cs プロジェクト: veler/BaZic
 /// <summary>
 /// Retrieves via serialization the error that comes from the interpreter core.
 /// </summary>
 /// <returns>Returns the error.</returns>
 private Error GetError()
 {
     return(SerializationHelper.ConvertFromBinary <Error>(_assemblySandbox.Reflection.GetPropertySerialized(_core, nameof(_core.Error))));
 }