【전환】C#클래스의 속성을 옮겨다니며 값을 추출합니다
namespace WeiXinApi.CommonCS
{
public class ForeachClass
{
///
/// C#
///
///
///
public static void ForeachClassProperties(T model)
{
Type t = model.GetType();
PropertyInfo[] PropertyList = t.GetProperties();
foreach (PropertyInfo item in PropertyList)
{
string name = item.Name;
object value = item.GetValue(model, null);
}
}
}
}
변경:
///
/// C#
///
///
///
public static void ForeachClassProperties(T model)
{
Type t = model.GetType();
PropertyInfo[] PropertyList = t.GetProperties();
foreach (PropertyInfo item in PropertyList)
{
string name = item.Name;
object value = item.GetValue(model, null);
Console.WriteLine(name);
if (item.PropertyType.IsGenericType && item.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>))
{
// If it is NULLABLE, then get the underlying type. eg if "Nullable" then this will return just "int"
var columnType = item.PropertyType.GetGenericArguments()[0];
Console.WriteLine(columnType);
}
else
{
Console.WriteLine(item.PropertyType.Name);
}
Console.WriteLine();
}
}
Google 응용 프로그램에서 Google은 클래스를 사용하여 Google 업무 대상을 설명하고, 보고서 같은 것을 만들어 줍니다. 다양한 대상에 의존하고, Google은 Google 업무 대상을 전환하거나, List의 업무 대상을 DataTables로 전환하는 데 도움을 줍니다.
데이터베이스 테이블의 필드가null이기 때문에 대응합니다.net2.0 이후에 우리는 Nullable 형식으로 실현할 수 있습니다. 업무 대상 클래스에 필드가null이 있고 DataTable로 전환해야 할 때 이 장면이 발생하면 다음과 같은 방법을 사용할 수 있습니다.
///
/// Converts a Generic List into a DataTable
///
///
///
///
private DataTable GetDataTable(IList list, Type typ)
{
DataTable dt = new DataTable();
// Get a list of all the properties on the object
PropertyInfo[] pi = typ.GetProperties();
// Loop through each property, and add it as a column to the datatable
foreach (PropertyInfo p in pi)
{
// The the type of the property
Type columnType = p.PropertyType;
// We need to check whether the property is NULLABLE
if (p.PropertyType.IsGenericType && p.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>))
{
// If it is NULLABLE, then get the underlying type. eg if "Nullable" then this will return just "int"
columnType = p.PropertyType.GetGenericArguments()[0];
}
// Add the column definition to the datatable.
dt.Columns.Add(new DataColumn(p.Name, columnType));
}
// For each object in the list, loop through and add the data to the datatable.
foreach (object obj in list)
{
object[] row = new object[pi.Length];
int i = 0;
foreach (PropertyInfo p in pi)
{
row[i++] = p.GetValue(obj, null);
}
dt.Rows.Add(row);
}
return dt;
}
위 코드의 키 포인트:
이제 애플리케이션을 살펴보겠습니다.
public class Person
{
public string Name { get; set; }
public DateTime DateOfBirth { get; set; }
public DateTime? DateOfDeath { get; set; }
}
public class Example
{
public static DataTable RunExample()
{
Person edward = new Person() { Name = "Edward", DateOfBirth = new DateTime(1900, 1, 1), DateOfDeath = new DateTime(1990, 10, 15) };
Person margaret = new Person() { Name = "Margaret", DateOfBirth = new DateTime(1950, 2, 9), DateOfDeath = null };
Person grant = new Person() { Name = "Grant", DateOfBirth = new DateTime(1975, 6, 13), DateOfDeath = null };
List people = new List();
people.Add(edward);
people.Add(margaret);
people.Add(grant);
DataTable dt = GetDataTable(people, typeof(Person));
return dt;
}
}
다음과 같은 DataTable이 반환됩니다.
Name (string)
DateOfBirth (DateTime)
DateOfDeath (DateTime)
Edward
1/1/1900
15/10/1990
Margaret
9/2/1950
[NULL]
Grant
13/6/1975
[NULL]
통합 전환:
https://www.cnblogs.com/Stephenchao/p/4481990.html
https://www.cnblogs.com/chenwolong/p/fanshe.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
easyui 내 보 내기 excel 다운로드 상 자 를 꺼 낼 수 없 는 해결 방법이전에 ajax 로 만 든 코드 는 다음 과 같 습 니 다 (ActionUrl 은 일반 처리 프로그램 ashx 의 경로 입 니 다). 다운로드 상 자 를 팝 업 할 수 없습니다. 직접 브 라 우 저 주소 표시 줄 에...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.