C
Craig Buchanan
if i have a class that is declared
public abstract class Hashlist : IDictionary, IEnumerable
{
....}
how do i translate the following (method?) into vb?
IEnumerator IEnumerable.GetEnumerator()
{
return m_oValues.GetEnumerator();
}
thanks,
Craig Buchanan
public abstract class Hashlist : IDictionary, IEnumerable
{
....}
how do i translate the following (method?) into vb?
IEnumerator IEnumerable.GetEnumerator()
{
return m_oValues.GetEnumerator();
}
thanks,
Craig Buchanan