퇴근5분전

어쨌든...  굵은 글씨를...

훈스에 김시원님이 강좌에 개나소나...로 써주셨던.. 난 몰랐던... ㅠㅠ;

찾아보니..  아래처럼 되는것? 같은... 글이었음.


 public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
          

            SomeType st = 0;
            int i = st;

        }
    }

    class SomeType
    {
        object _obj = 0;

        public object Value
        {
            get { return _obj; }
          private  set { _obj = value; }
        }

        public SomeType(object obj)
        {
            _obj = obj;
        }

        public static implicit operator SomeType(int typ)
        {
            try
            {
                 return new SomeType(typ);
            }
            catch(Exception ex ) {
                throw ex;
            }

        }

        public static implicit operator int(SomeType typ)
        {
            try
            {
                checked
                {
                    return (int)typ.Value;
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }

        }
    }

'# 3) .Net ( Vs 2008 ) > C#' 카테고리의 다른 글

LINQ 그룹바이... 훌...  (0) 2010.07.30
Double.Parser()...  (0) 2010.07.19
IPC .Net ( 프로세스간 통신 )  (1) 2010.05.12
VB의 Left구현하기... 확장메서드를 이용함...  (0) 2010.02.22
기간 출력하고자 할때...  (0) 2010.02.18