Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
JJ 2
//Rextester.Program.Main is the entry point for your code. Don't change it. //Compiler version 4.0.30319.17929 for Microsoft (R) .NET Framework 4.5 using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace Rextester { public class l { public int a; public int b; public int c; public l(int a_, int b_, int c_) { a = a_; b = b_; c = c_; } public l() { } } public class ListOfL { public List<l> items = new List<l>(); } public class Program { public static void Main(string[] args) { ListOfL mylist = new ListOfL(); mylist.items.Add(new l(1, 2, 1)); mylist.items.Add(new l(1, 5, 99)); mylist.items.Add(new l(2, 10, 100)); mylist.items.Add(new l(3, 1, 99)); mylist.items.Add(new l(3, 6, 2)); var z = (from q in mylist.items select new l { a = q.a, b = q.b, c = q.c } ).ToList().OrderBy(o => o.c); foreach (var data in z) { Console.WriteLine(data.a + " " + data.b + " " + data.c); } } } } //goal would be to only show the first a it sees //so only show these 3 rows //1 2 1 //3 6 2 //2 10 100
run
|
edit
|
history
|
help
0
Merging and sorting 2 arrays using LINQ
Number of Digits in a Number
DateTime Parser
Padma. C#
Delegate test lambda
Sorting String Problem need help
hypotenuse calculator
Collatz Conjecture Using Pi
Best Exam Collection site
hi