小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

.net 兩個對象相同參數(shù)復(fù)制

 修行的嘟嘟 2024-10-16
public static void CopyProperties(object source, object destination) { var sourceProperties = source.GetType().GetProperties(); foreach (var prop in sourceProperties) { var destinationProperty = destination.GetType().GetProperty(prop.Name); if (destinationProperty != null && destinationProperty.CanWrite && prop.CanRead) { destinationProperty.SetValue(destination, prop.GetValue(source)); } } } // 使用 Person person1 = new Person { Name = "Alice", Age = 30 }; Person person2 = new Person(); CopyProperties(person1, person2);

    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多