Create Mesh From Brep

In the code below :
Mesh = []
for context in Context:
Mesh.append(Rhino.Geometry.Mesh.CreateFromBrep(context))

Context is a list of BREPs. The output of Mesh is Rhino.Geometry.Mesh which I am not able to use in Rhino directly. The error I get on connecting “Mesh” to any component is : “Failed to convert Goo to Mesh”.

What is wrong here? How do I convert Mesh into RHINO usable meshes?

Solved it.