📅  最后修改于: 2022-03-11 14:49:15.179000             🧑  作者: Mango
//Example struct
struct Example{
//You can use any binary operator(+, -, *, /) after operator
public static Example operator*(Example left, Example right){
return new Example();
}
}