NSoft.NFramework.Tools.TypeTool.GetProperties C# (CSharp) Method

GetProperties() public static method

인스턴스의 속성 정보를 "속성 명=속성 값" 형태로 만들어 반환합니다.
public static GetProperties ( object obj ) : string
obj object
return string
        public static string GetProperties(object obj) {
            if(obj == null)
                return string.Empty;

            var result = new StringBuilder();

            GetProperties(obj, result);

            return result.ToString();
        }

Same methods

TypeTool::GetProperties ( object obj, IDictionary props ) : void
TypeTool::GetProperties ( object obj, StringBuilder result ) : void