Subject: DiscoItemsIq Query commented out
Working with DiscoItemsIq i found the following lines commented out:
So i uncommented them:
Is there a reason that you have commented these lines out?
// public new DiscoItem Query
// {
// get
// {
// return m_DiscoItem;
// }
// }
I tried to figure out the reason for this but i did not find any answer.// {
// get
// {
// return m_DiscoItem;
// }
// }
So i uncommented them:
public new DiscoItems Query
{
get
{
return m_DiscoItem;
}
}
and now it works fine!{
get
{
return m_DiscoItem;
}
}
Is there a reason that you have commented these lines out?