本文介绍了如何在c#中获取列表的基址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

private void GetGroupsCustomerLoaded( LoadOperation<CustomerDto> lo )
        {
            customerList             = lo.Entities.ToList();
}







这里我在customerList中获取记录,只是想得到customerList列表的基地址。



请给我一些建议。




Here i am getting the records in the customerList and just want to get the base address of the customerList list.

Please give me some suggestion.

推荐答案


这篇关于如何在c#中获取列表的基址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 18:09