매우 성의없고 허접하지만 그래도 만들어보았습니다 ;;
class Program
{
static void Main(string[] args)
{
Test();
}
public static Tuple<string, int> TupleSimpleExam()
{
Tuple<string, int> tuple = new Tuple<string, int>("string", 100);
return tuple;
}
public static void Test()
{
Tuple<string, int> returnValue = TupleSimpleExam();
Console.WriteLine("{0} , {1} " ,returnValue.Item1, returnValue.Item2);
}
}
'C# > WindowsForm' 카테고리의 다른 글
C# 퍼센트 구하기 간단한 예제 (0) | 2015.09.15 |
---|---|
웹 페이지에서 이미지 로드하여 Drawing으로 그리기 예제 (0) | 2015.08.18 |
현재 메서드의 이름 확인 (0) | 2015.05.14 |
File.Copy 나 File.Delete시 System.UnauthorizedAccessException 발생현상 해결 방법 (0) | 2014.05.30 |
호스트 이름으로 검색하여 IP 주소 얻어오기 (0) | 2013.12.03 |