C# String GetEnumerator() Method

You are Here:

C# String GetEnumerator()

The GetEnumerator() method converts string object into char enumerator.

This method returns an Enumerator object that can be used to loop through the collection.

Example

C# Compiler
using System; namespace myApp { class Program { static void Main(string[] args) { string s = "wikimass"; CharEnumerator ch = s.GetEnumerator(); while(ch.MoveNext()) { Console.WriteLine(ch.Current); } } } }

Output

w i k i m a s s

Syntax

public CharEnumerator GetEnumerator()

Parameter Values

It does not take any argument.

Return Value

ValueExplanation
NumberReturns an Enumerator object.

Reminder

Hi Developers, we almost covered 90% of String functions and Interview Question on C# with examples for quick and easy learning.

We are working to cover every Single Concept in C#.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author