本文整理汇总了C#中GenericList.Size方法的典型用法代码示例。如果您正苦于以下问题:C# GenericList.Size方法的具体用法?C# GenericList.Size怎么用?C# GenericList.Size使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GenericList
的用法示例。
在下文中一共展示了GenericList.Size方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Main
public static int Main()
{
GenericList<int> list = new GenericList<int>(20);
for (int i = 0; i <= 45; i++)
{
list.AddElement(i + 5);
}
list.RemoveElement(5);
Console.Write("Elements: ");
for (int i = 0; i <= list.Size() - 1; i++)
{
Console.Write(list.GetElement((uint)i));
if (i < list.Size() - 1)
{
Console.Write(",");
}
}
Console.WriteLine("\n{0}",list.FindElementByVal(40));
Console.WriteLine(list.Min());
Console.WriteLine(list.Max());
Console.WriteLine(list.ToString());
return 0;
}
示例2: SincronizarDeudaClientes
public void SincronizarDeudaClientes(GenericList<DireccionEntrega> clientes, bool async)
{
GenericList<ZARFIAR_RFC_DEUDASCLIENTES_IM_KUNNR> arrZARFIAR_RFC_DEUDASCLIENTES_IM_KUNNR = new GenericList<ZARFIAR_RFC_DEUDASCLIENTES_IM_KUNNR>();
foreach (DireccionEntrega cliente in clientes)
{
if (cliente.CuentaLPO != null && cliente.CuentaLPO.Trim().Length > 0)
{
ZARFIAR_RFC_DEUDASCLIENTES_IM_KUNNR cuentaLP0 = new ZARFIAR_RFC_DEUDASCLIENTES_IM_KUNNR();
cuentaLP0.KUNNR = cliente.CuentaLPO;
arrZARFIAR_RFC_DEUDASCLIENTES_IM_KUNNR.Add(cuentaLP0);
}
}
if (arrZARFIAR_RFC_DEUDASCLIENTES_IM_KUNNR.Size() > 0)
{
PersonalizationParameters _customParams = App.CurrentSUPContext.GetPersonalizationParameters();
_customParams.ZARFIAR_RFC_DEUDASCLIENTES_IM_KUNNRKey = arrZARFIAR_RFC_DEUDASCLIENTES_IM_KUNNR;
_customParams.Save();
if (async)
{
GenericList<ISynchronizationGroup> syncGroups = new GenericList<ISynchronizationGroup>();
syncGroups.Add(CRMMobileDesaDB.GetSynchronizationGroup("Deuda"));
App.CurrentSUPContext.SyncAsync(syncGroups, "", "Deuda de clientes");
}
else
App.CurrentSUPContext.Sync(DEUDAS_CLIENTES, "Deuda de clientes");
}
}
示例3: SincronizarDetallePedidos
public void SincronizarDetallePedidos(GenericList<ClienteCabeceraPedido> pedidos, String codigoRepresentanteComercial, bool async)
{
configureFechaSincronizacion();
GenericList<Z01CRM_RRCC_F_DETPEDIDOS_PEDIDOS> arrZ01CRM_RRCC_F_DETPEDIDOS_PEDIDOS = new GenericList<Z01CRM_RRCC_F_DETPEDIDOS_PEDIDOS>();
foreach (var pedido in pedidos)
{
Z01CRM_RRCC_F_DETPEDIDOS_PEDIDOS datoPedido = new Z01CRM_RRCC_F_DETPEDIDOS_PEDIDOS();
datoPedido.SISTEMA = pedido.Sistema;
datoPedido.PEDIDO = pedido.Pedido_CodigoSAP;
arrZ01CRM_RRCC_F_DETPEDIDOS_PEDIDOS.Add(datoPedido);
}
if(arrZ01CRM_RRCC_F_DETPEDIDOS_PEDIDOS.Size() > 0)
{
_customParams.REPRESENTANTE_COMERCIALKey = codigoRepresentanteComercial;
_customParams.Z01CRM_RRCC_F_DETPEDIDOS_PEDIDOSKey = arrZ01CRM_RRCC_F_DETPEDIDOS_PEDIDOS;
_customParams.Save();
if(async)
{
GenericList<ISynchronizationGroup> syncGroups = new GenericList<ISynchronizationGroup>();
syncGroups.Add(CRMMobileDesaDB.GetSynchronizationGroup(DETALLE_PEDIDO));
App.CurrentSUPContext.SyncAsync(syncGroups, "Cabecera de pedido");
}
else
App.CurrentSUPContext.Sync(DETALLE_PEDIDO, "Cabecera de pedido");
}
}
示例4: EstadoInteraccion_OnChanged
public static void EstadoInteraccion_OnChanged(InteraccionModel<InteraccionBusiness> interaccion)
{
if (interaccion.EstadoInteraccion_CodigoSAP != Constants.EstadoInteraccionCodigoSAP.CONCLUIDA)
return;
if (
interaccion.Formulario_CodigoSAP == null
||
(interaccion.Formulario_CodigoSAP != ((int)Enums.eFormulario.CHECK_COMERCIAL).ToString() &&
interaccion.Formulario_CodigoSAP != ((int)Enums.eFormulario.CHECK_COMERCIAL_RETAIL).ToString() &
interaccion.Formulario_CodigoSAP != ((int)Enums.eFormulario.CHECK_VISITA_RETAIL).ToString())
)
{
cerrarInteraccion(interaccion);
return;
}
// No se puede cambiar de estado si alguna respuesta es NO CUMPLE
GenericList<RespuestaInteraccionFormulario> respuestasNoCumple = new GenericList<RespuestaInteraccionFormulario>();
var respuestasFormularioCheck = interaccion.RespuestasInteraccionFormulario;
foreach (var respuestaFormularioCheck in respuestasFormularioCheck)
{
if (respuestaFormularioCheck.Respuesta_CodigoSAP == null)
respuestasNoCumple.Add(respuestaFormularioCheck.SUPEntity);
else
{
Respuesta respuesta = Respuesta.FindByCodigoSAP(respuestaFormularioCheck.Respuesta_CodigoSAP);
if (respuesta.CodigoSAP.Trim() == Constants.RespuestaCodigoSAP.NO_CUMPLE)
respuestasNoCumple.Add(respuestaFormularioCheck.SUPEntity);
}
}
if (respuestasNoCumple.Size() > 0)
{
// TODO: Terminar de mostrar la interaccion subsiguiente
App.Locator.InteraccionSubsiguienteChildViewModelStatic.RespuestasNoCumple = respuestasNoCumple;
InteraccionSubsiguienteChildView.Show();
if (App.Locator.InteraccionSubsiguienteChildViewModelStatic.Result)
cerrarInteraccion(interaccion);
}
else
cerrarInteraccion(interaccion);
}