Generic1 (C#) Generic Method 에서 null return 하는 방법 public static T FindType() { /* * Find T type in specific container */ return null; } 위와 같은 T type에 대한 Generic Method가 있다고 생각해보자. T type에 대한 find가 성공할 경우 그 인스턴스를 반환, 실패할 경우 null을 반환하고 싶다. 그렇지만 T가 value type인지 reference type인지 알 수 없기 때문에 null return 부분에 에러가 뜨게 된다. 이걸 처리할 수 있는 방법이 3가지가 있다. 1. default(T) public static T FindType() { /* * Find T type in specific container */ return default(T); } def.. 2022. 7. 24. 이전 1 다음