1
0
Fork 0

Add LinkTable.GetEnumerator

This commit is contained in:
sheychen 2017-01-19 12:06:54 +01:00
parent 1c991d37b2
commit f4480b684a
1 changed files with 5 additions and 0 deletions

View File

@ -123,5 +123,10 @@ namespace MyCommon.Generic
return false;
}
}
public Dictionary<TMain, TSecond>.Enumerator GetEnumerator()
{
return mainTable.GetEnumerator();
}
}
}