Click here to Skip to main content
15,881,588 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear All,

Please tell how we can extend string class.


Thanks
Seema
Posted

See this article:
Extending String Class[^]
 
Share this answer
 
you can use Extension Methods
For example
static class MyExtensions
{
public static void showInfo(this User user)
{
Console.WriteLine("Name :{0}\nAge :{1}",user.Name,user.Age);
}
public ststic void TellType(this string str)
{
Console.WriteLine("I am string:{0}",str);
}
}

public staic void main()
{
User user=new User{Name="Emma" ,Age=26};
//use the extension methods
user.showInfo();
string str="123abc";
str.TellType();
}
}
I am a chinese, my English is poor,you can communicate with me by Email.1028630307@qq.com
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900