public void AddCodeComments(bool forceForwardSlash, params string[] comments)
 {
     if (m_portCategory == MasterNodePortCategory.Tessellation || m_portCategory == MasterNodePortCategory.Vertex)
     {
         AddToVertexLocalVariables(0, IOUtils.CreateCodeComments(forceForwardSlash, comments));
     }
     else
     {
         AddToLocalVariables(0, IOUtils.CreateCodeComments(forceForwardSlash, comments));
     }
 }