Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
School/C# - Beginner (Denis)/Lesson 59/lesson_59.cs
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (24 sloc)
500 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string s = "Привет мир"; | |
char c = 'и'; | |
int i = s.CharCount(c); | |
Console.WriteLine(i); | |
Console.Read(); | |
} | |
} | |
public static class StringExtension | |
{ | |
public static int CharCount(this string str, char c) | |
{ | |
int counter = 0; | |
for (int i = 0; i < str.Length; i++) | |
{ | |
if (str[i] == c) | |
counter++; | |
} | |
return counter; | |
} | |
} |