I am using below code which gives me both list & document library; but I am trying to get list of only document libraries.
Please help me how to differentiate list & document library programatically
using(SPSite oSite = new SPSite("https://server/site"))
{
using (SPWeb oWeb = oSite.OpenWeb())
{
SPListCollection oLists = oWeb.Lists;
foreach (SPList olist in oLists)
{
Response.Write(olist.Title+"<br>");
}
}
}