namespace StringExtnsion
{
public static class WordCountExtinsion
{
//this is used to bind the method to the main class
public static int WordCount(this String str)
{
string[] strings = str.Split(new char[] { ' ' , '?' });
return strings.Length;
}
}
}
namespace StringExtnsion
{
public static class WordCountExtinsion
{
//this is used to bind the method to the main class
public static int WordCount(this String str)
{
string[] strings = str.Split(new char[] { ' ' , '?' });
return strings.Length;
}
}
}