티스토리 뷰
반응형
public static class ExtMethod
{
public static string ConvertTen(this string s)
{
string returnStr = "";
for (int i = 0; i < 10; i++)
{
returnStr += s;
}
return returnStr;
}
}
string 변수에서 '.' 찍고 난 다음 나오는 메서드에 추가하고 싶을때 씀
ex)
string a = "a";
Console.WriteLine(a.ConvertTen());
하면 a가 10개 찍혀서 나온다
string 변수에서 '.' 찍고 난 다음 나오는 메서드에 추가하고 싶을때 씀
ex)
string a = "a";
Console.WriteLine(a.ConvertTen());
하면 a가 10개 찍혀서 나온다
반응형
'Programming > .Net' 카테고리의 다른 글
암호화(MD5, SHA256, SHA512, SHA384) (0) | 2012.09.11 |
---|---|
오버로드와 오버라이드의 차이점(overload & override) (0) | 2011.09.22 |
C# AS의 역할 (0) | 2011.09.21 |
AutoComment V.01 (0) | 2011.09.06 |
C# DataGridView -> Excel 파일 저장 (0) | 2011.06.22 |
공지사항