C\#일반 클래스 생 성 및 사용 방법

1455 단어 C#범 형 류
본 고의 실례 는 여러분 에 게 C\#범 형 류 의 창설 과 사용 에 대한 구체 적 인 코드 를 공 유 했 습 니 다.여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication13
{
 class Program
 {
  static void Main(string[] args)
  {
   Test<string,int> t = new Test<string,int>("Age",16);
   t.Run();
   t.SetT1Value = "Height";
   t.SetT2Value = 1000;
   t.Run();
   Console.ReadKey();
  }
 }

 class Test<T1,T2>
 {
  private T1 _t1;
  private T2 _t2;

  public Test(T1 v1,T2 v2)
  {
   _t1 = v1;
   _t2 = v2;
  }

  public T1 SetT1Value
  {
   set
   {
    _t1 = value;
   }
  }

  public T2 SetT2Value
  {
   set
   {
    _t2 = value;
   }
  }

  public void Run()
  {
   Console.WriteLine("The type of T1 is {0},the value is {1}",_t1.GetType().ToString(),_t1);
   Console.WriteLine("The type of T2 is{0},the value is {1}", _t2.GetType().ToString(), _t2);
  }

 }
}
실행 결과:

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기