Computer & Program/C#2 [C#]as와 is 연산자 C#에서는 casting을 기타 다른 언어들처럼 변수 앞에 변환할 변수 또는 객체 타입을 괄호로 묶어 casting을 할 수 있지만 as 연산자도 제공한다. 그리고 이것이 해탕 객체인지 확인 할 수있는 is 연산자도 제공한다.글보다 예제를 보자. 123456789101112static void Main() { object[] temp = new object[2]; temp[0] = "test code"; temp[1] = 2016; string str1 = temp[0] as string; string str2 = temp[1] as string; int num1 = temp[1] as int; // 이거는 안된다. int num2 = (int)temp[1];} Colored by Color Script.. 2016. 3. 29. [C#]out과 ref 키워드 차이 C#에 보면 out이나 ref 키워드를 본적이 있을 것이다.쓰임새를 보면 이 2개는 거의 같은 느낌으로 쓰이는데 무슨 차이가 있는지 궁금해서 정리해 보았다. 우선 out과 ref의 차이를 예시를 통해서 보자.먼저 out의 예제이다.1234567891011121314class Test_Out{ static void initArray(out int[] arr) { arr = new int[3] {1, 2, 3}; } static void Main() { int[] array; initArray(out array); // arr[3] = {1, 2, 3} }}Colored by Color Scriptercs 이어서 ref의 예제를 보면...1234567891011121314class Test_Ref{ stat.. 2016. 1. 27. 이전 1 다음