[C#] GetType() 메소드
모든 데이터 형식은 object 형식을 상속받고 있다. 이 메소드는 해당 변수의 실제 형식을 알려준다. class Animal { } class Dog : Animal { } void PrintTypes(Animal a) { Console.WriteLine(a.GetType() == typeof(Animal)); // false Console.WriteLine(a is Animal); // true Console.WriteLine(a.GetType() == typeof(Dog)); // true } 한 사이트에서 가져온 예시이며, Dog라는 Class는 Animal을 상속 받고 있습니다. 상속 받은 Dog의 경우 GetType() == typeof(Animal)로 비교 시 Dog클래스는 Animal를 상..
[.Net C#]/기초 샘플 코드
2020. 7. 12. 19:21
[C#] Nullable
Null + able int? a = null; float? b = null;
[.Net C#]/기초 샘플 코드
2020. 7. 12. 19:11
[C#] 형변환
string to int string a = "123"; int b = (int)a; int to string int c = 123; string d = (string)c; int to float int a = int.Parse("12345"); float = float.Parse("123.45"); int, float to string int c= 123; string d = c.Tostring(); float e = 123.45; string f = e.Tostring();
[.Net C#]/기초 샘플 코드
2020. 7. 12. 19:08
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크