Question: Which of the following define the rules for .NET Languages?
A
B
C
D
E
F
GAC
B
CLS
C
CLI
D
CTS
E
CLR
F
JIT
Note: Not available
List<Person> people = PopulateList();What does the statement below do?
people.Sort((x, y) => string.Compare(x.LastName, y.LastName));
class Test { static void Main() { string myString = “1 2 3 4 5” myString = Regex.Replace(myString, @"\s+", " "); System.Console.WriteLine(myString); }