S
shapper
Hello,
I need to hold a few ints on a variable and later add a few more but
in code line if possible.
I was trying and int array and concat or join but I wasn't able to
make it work:
Int32[] assetsIds = new Int32[] {1, 2};
List<Asset> assets = service.GetAssets(assetsIds.Contat(new Int32[]
{10, 12}));
I am not sure if I could, or should, use a List<Int32> instead ...
Thanks,
Miguel
I need to hold a few ints on a variable and later add a few more but
in code line if possible.
I was trying and int array and concat or join but I wasn't able to
make it work:
Int32[] assetsIds = new Int32[] {1, 2};
List<Asset> assets = service.GetAssets(assetsIds.Contat(new Int32[]
{10, 12}));
I am not sure if I could, or should, use a List<Int32> instead ...
Thanks,
Miguel