1
votes
votes
2 answers
difference between CharEnumerator and IEnumerator
hi, pl. look into this code: string strSample = "hello dotnet world!"; CharEnumerator chEnum = strSample.GetEnumerator(); IEnumerator ichEnum = strSample.GetEnumerator(); Cons ...
