📌  相关文章
📜  mql5 < ILLEGAL OPERATION - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:23.427000             🧑  作者: Mango

代码示例1
struct Random{
 int a;
 int b;
}
int c;
if ( c  > Random){ //Gives error '> illegal operation'
 do something;
 }
//should be c> Random.a; 

//Don't worry you're not stupid I made the same mistake!