본문 바로가기
C# /WindowsForm

Tuple을 이용한 데이터 저장 및 전달 간단한 예제

by Hwoarang757 2015. 7. 9.

매우 성의없고 허접하지만 그래도 만들어보았습니다 ;;

 

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);

        }

 

 

    }