blah blah blah is here! blah blah » Close

1
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 ...

Feedback