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
What does the statement below do?
- List<Person> people = PopulateList();
- 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);
- }