How to iterate on all properties of an object in C#?

后端 未结 3 1863
名媛妹妹
名媛妹妹 2021-02-08 16:44

I am new to C#, I want to write a function to iterate over properties of an object and set all null strings to \"\". I have heard that it is possible using something called \"Re

3条回答
  •  盖世英雄少女心
    2021-02-08 17:13

    object myObject;
    
    PropertyInfo[] properties = myObject.GetType().GetProperties(BindingFlags.Instance);
    

    See http://msdn.microsoft.com/en-us/library/aa332493(VS.71).aspx

提交回复
热议问题