as는 참조형식에서만 사용이 됩니다. 예제 소스는 is키워드를 설명할 때 사용했던 것과 비슷합니다.
Colored By Color Scripter 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace is_test { abstract class Mammal { abstract public void who(); } abstract class human : Mammal { abstract override publ...
#
IT·컴퓨터
원문 링크 : [C#] as 키워드