c:\test>c:\test\1.exe so
Stack overflow.
c:\test>c:\test\1.exe null
Unhandled exception. System.NullReferenceException: Object reference not set to an instance of an object.
at _1.Program.X(String arg)
at _1.Program.Main(String[] args)
| #define CONTRACTS_FULL | |
| using System; | |
| using System.Diagnostics; | |
| using System.Diagnostics.Contracts; | |
| using System.Reflection; | |
| using System.Runtime.InteropServices; | |
| using System.Threading; | |
| using System.Threading.Tasks; |
c:\test>c:\test\1.exe so
Stack overflow.
c:\test>c:\test\1.exe null
Unhandled exception. System.NullReferenceException: Object reference not set to an instance of an object.
at _1.Program.X(String arg)
at _1.Program.Main(String[] args)
| c:\test>c:\test\1.exe so | |
| Stack overflow. | |
| c:\test>c:\test\1.exe ff | |
| Process terminated. <reason> | |
| at System.Environment.FailFast(System.String) | |
| at _1.Program.X(System.String) | |
| at _1.Program.Main(System.String[]) | |
| c:\test>c:\test\1.exe av | |
| Fatal error. System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. | |
| at _1.Program.X(System.String) |
| Unix code(s) |
| typedef signed char int8_t; | |
| typedef short int16_t; | |
| typedef int int32_t; | |
| typedef long long int64_t; | |
| typedef unsigned char uint8_t; | |
| typedef unsigned short uint16_t; | |
| typedef unsigned int uint32_t; | |
| typedef unsigned long long uint64_t; | |
| typedef signed char int_least8_t; | |
| typedef short int_least16_t; |
| using System; | |
| using System.IO; | |
| using System.Xml.Linq; | |
| using System.Linq; | |
| namespace ConsoleApp20 | |
| { | |
| class Program | |
| { | |
| static void Main() |
| Mean = 6.7743 s, StdErr = 0.0503 s (0.74%); N = 100, StdDev = 0.5025 s | |
| Min = 5.9039 s, Q1 = 6.3304 s, Median = 6.6198 s, Q3 = 7.2020 s, Max = 7.9049 s | |
| IQR = 0.8716 s, LowerFence = 5.0231 s, UpperFence = 8.5093 s | |
| ConfidenceInterval = [6.6039 s; 6.9447 s] (CI 99.9%), Margin = 0.1704 s (2.52% of Mean) | |
| Skewness = 0.6, Kurtosis = 2.17, MValue = 2.65 | |
| // ***** BenchmarkRunner: Finish ***** | |
| // * Export * |
| T:Wintellect.PowerCollections.Algorithms | |
| T:Wintellect.PowerCollections.Algorithms.ArrayRange`1 | |
| M:Wintellect.PowerCollections.Algorithms.ArrayRange`1.#ctor(`0[],System.Int32,System.Int32) | |
| T:Wintellect.PowerCollections.Algorithms.ArrayWrapper`1 | |
| M:Wintellect.PowerCollections.Algorithms.ArrayWrapper`1.#ctor(`0[]) | |
| P:Wintellect.PowerCollections.Algorithms.ArrayWrapper`1.System#Collections#IList#IsFixedSize | |
| M:Wintellect.PowerCollections.Algorithms.BinarySearch``1(System.Collections.Generic.IList{``0},``0,System.Collections.Generic.IComparer{``0},System.Int32@) | |
| M:Wintellect.PowerCollections.Algorithms.BinarySearch``1(System.Collections.Generic.IList{``0},``0,System.Comparison{``0},System.Int32@) |
| namespace Microsoft.VisualBasic | |
| { | |
| public enum AppWinStyle : short | |
| { | |
| Hide = (short)0, | |
| MaximizedFocus = (short)3, | |
| MinimizedFocus = (short)2, | |
| MinimizedNoFocus = (short)6, | |
| NormalFocus = (short)1, | |
| NormalNoFocus = (short)4, |