open MyMath
let arith = Arith() // create instance of Arith
let x = arith.Add(10, 20) // call method Add
Arith in your code is class name, you cannot open it like namespace. Possibly you are confused with ability to open F# modules so its functions can be used without qualification