Accessing Named view list c#

I am trying to get a list of a document’s named views in c#. So far I have only been able to get a list of rhino’s standard views using:

        Rhino.DocObjects.Tables.ViewTable viewTable = doc.Views;
        Rhino.Display.RhinoView[] views = viewTable.GetViewList(true, true);

Can Anyone please tell me how to do the same for the named views?

doc.NamedViews

Try this one, more about….C# List

Rahul