using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
public static void Main()
var a = new List<int>() { 1, 2, 3 };
var b = new List<int>() { 5, 1, 2 };
var c = a.Select((x, i) => b[i] * x);
Console.WriteLine(value);