제목 : 기본기능확인.cs
글번호:
|
|
280
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2005/06/30 오후 5:24:00
|
조회수:
|
|
5256
|
using System;
namespace 기본기능확인
{
public class 기본기능확인
{
public static void Main(string[] args)
{
//스태틱
Console.WriteLine(
"integer \n최소값 : {0}\n최대값:{1}"
, integer.MinValue
, integer.MaxValue);
//인스턴스
integer int1 = new integer(10);
Console.WriteLine(int1.value);//10
}
}
}