Search notes:

System.Linq.IOrderedEnumerable (interface)

System.Linq.IOrderedEnumerable represents a sorted sequence and is, for example, returned by OrderBy():
using System;
using System.Linq;

class Prg {

   static void Main() {

      string[] words  = {"one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten" };
      System.Linq.IOrderedEnumerable<string> sorted =  words.OrderBy(wrd => wrd);

   //
   // The preevious OrderBy() returned, in fact, a
   //    System.Linq.OrderedEnumerable<System.String, System.String>:
      Console.WriteLine(sorted.GetType().FullName);

      foreach (string word in sorted) {
         Console.WriteLine(word);
      }
   }
}
Github repository .NET-API, path: /System/Linq/IOrderedEnumerable/returned-by-OrderBy.cs

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Microsof...', 1759525741, '216.73.216.149', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Microsoft/dot-net/namespaces-classes/System/Linq/IOrderedEnumerable(53): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78