//관계(비교) 연산자 : 크거나 작은지를 비교... 결과값은 bool값
// < , > , <=, >=
//==연산자 : 같은지를 비교, 같으면 참 그렇지 않으면 거짓
//!=연산자 : 다른지를 비교, 다르면 참 그렇지 않으면 거짓
//is연산자
//: (참조형변수 is 데이터형)->참조형변수가 데이터형인지?
//as연산자
//: (참조형변수 as 데이터형)->참조형변수를 데이터형으로 변환
using System;
public class 관계연산자
{
public static void Main()
{
int i, j;
i = 10; j = 5;
object strTest = "참조형변수";
Console.WriteLine(i == j);//같은지
Console.WriteLine(i != j);//다른지
Console.WriteLine("{0}", strTest is string);
Console.WriteLine("{0}", strTest as string);
}
}