'C#'에 해당되는 글 20건

  1. 2009.02.09 두개의 private를 이용한 2
C#2009. 2. 9. 13:08




이런 방식으로 코딩 하면 보다 효율적으로 코딩도 할수 있고
메모리 혹은 리소스의 낭비도 줄일수 있다~





private DataTable GridDataTable
    {
        get
        {
            if (fpList.DataSource == null || !(fpList.DataSource is DataTable))
                return null;
            return ((DataTable)fpList.DataSource);
        }
    }

    private DataTable GridChangedDataTable
    {
        get
        {
            if (GridDataTable == null)
                return null;
            return GridDataTable.GetChanges();
        }
    }

 

두개의 private를 사용하여... GetChanges()의 값을 효율적으로

받아올수 있게 작성됨...

따로 따로도 재사용 가능함...

Posted by 댓거리사랑