On writting this code into my project i am getting the error that
Error 1 Inconsistent accessibility: field type \'System.Collections.Gene
\'System.Collections.Gene
My guess is that the Childrendata class is private (or internal, or implicitly internal by not specifying a visibility modifier)
Childrendata
private
internal
Since List m_children is public, Childrendata needs to be public as well.
List m_children
Change Childrendata to public and you should be fine.
public