├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── RTCLI.AOT ├── Array.h ├── Boolean.h ├── Console │ └── Write.h ├── Delegate.h ├── Enum.h ├── Exception.h ├── IL.h ├── Int.h ├── Internal │ ├── Add.inl │ ├── Box.inl │ ├── Cgt.inl │ ├── Managed.inl │ ├── Nop.inl │ ├── Object.inl │ ├── Sub.inl │ └── ValueType.inl ├── Nullable.h ├── Object.h ├── RTCLI.cpp ├── Runtime │ ├── Console.cpp │ └── Runtime.cpp ├── Single.h ├── String.h ├── System.Private.CoreLib │ ├── System.Private.CoreLib.csproj │ └── System.Private.CoreLib.sln └── ValueType.h ├── RTCLI.VM └── System.Private.CoreLib │ ├── System.Private.CoreLib.csproj │ └── System.Private.CoreLib.sln ├── RTCLI ├── Base.hpp ├── CIL │ ├── Internal │ │ ├── Code.h │ │ └── StackBehaviour.h │ └── OpCodes.h ├── CMakeLists.txt ├── Config.hpp ├── PIL.hpp ├── RTCLI.hpp ├── Source │ └── CIL │ │ └── CIL.cpp └── Traits.hpp ├── RTCLIDefault ├── CoreDefault.cpp ├── CoreDefault.hpp ├── ILDefault.cpp ├── RTCLIDefault.cpp └── RTCLIDefaultConfig.cmake.in ├── Test ├── CIL │ ├── CILTest.cpp │ └── CMakeLists.txt ├── CLICore │ ├── CLICoreTest.cpp │ └── CMakeLists.txt ├── CMakeLists.txt ├── Null │ ├── CMakeLists.txt │ └── NullTest.cpp ├── README.md └── String │ ├── CMakeLists.txt │ └── StringTest.cpp ├── gen_vs2017.bat ├── gen_vs2019.bat ├── gen_xcode.sh ├── install.bat ├── libraries └── System.Private.CoreLib │ ├── generators │ ├── EventSourceGenerator.Emitter.cs │ ├── EventSourceGenerator.Parser.cs │ ├── EventSourceGenerator.cs │ └── System.Private.CoreLib.Generators.csproj │ └── src │ ├── ILLink │ ├── ILLink.Descriptors.Shared.xml │ ├── ILLink.LinkAttributes.Shared.xml │ ├── ILLink.Substitutions.32bit.xml │ ├── ILLink.Substitutions.64bit.xml │ ├── ILLink.Substitutions.LittleEndian.xml │ ├── ILLink.Substitutions.NoArmIntrinsics.xml │ ├── ILLink.Substitutions.NoX86Intrinsics.xml │ ├── ILLink.Substitutions.OSX.xml │ ├── ILLink.Substitutions.Shared.xml │ ├── ILLink.Suppressions.LibraryBuild.xml │ ├── ILLink.Suppressions.Shared.xml │ └── ILLinkTrim_LibraryBuild.xml │ ├── Internal │ ├── AssemblyAttributes.cs │ ├── Console.Unix.cs │ ├── Console.Windows.cs │ ├── Console.cs │ ├── IO │ │ ├── File.Unix.cs │ │ ├── File.Windows.cs │ │ └── File.cs │ ├── Padding.cs │ ├── Runtime │ │ └── CompilerServices │ │ │ └── Unsafe.cs │ └── Win32 │ │ └── RegistryKey.cs │ ├── Microsoft │ └── Win32 │ │ └── SafeHandles │ │ ├── CriticalHandleMinusOneIsInvalid.cs │ │ ├── CriticalHandleZeroOrMinusOneIsInvalid.cs │ │ ├── SafeFileHandle.Unix.cs │ │ ├── SafeFileHandle.Windows.cs │ │ ├── SafeFindHandle.Windows.cs │ │ ├── SafeHandleMinusOneIsInvalid.cs │ │ ├── SafeHandleZeroOrMinusOneIsInvalid.cs │ │ ├── SafeRegistryHandle.Windows.cs │ │ ├── SafeRegistryHandle.cs │ │ ├── SafeWaitHandle.Unix.cs │ │ ├── SafeWaitHandle.Windows.cs │ │ └── SafeWaitHandle.cs │ ├── README.md │ ├── Resources │ └── Strings.resx │ ├── System.Private.CoreLib.Shared.projitems │ ├── System.Private.CoreLib.Shared.shproj │ └── System │ ├── AccessViolationException.cs │ ├── Action.cs │ ├── Activator.RuntimeType.cs │ ├── Activator.cs │ ├── AggregateException.cs │ ├── AppContext.AnyOS.cs │ ├── AppContext.Browser.cs │ ├── AppContext.cs │ ├── AppContextConfigHelper.cs │ ├── AppDomain.Unix.cs │ ├── AppDomain.Windows.cs │ ├── AppDomain.cs │ ├── AppDomainSetup.cs │ ├── AppDomainUnloadedException.cs │ ├── ApplicationException.cs │ ├── ApplicationId.cs │ ├── ArgumentException.cs │ ├── ArgumentNullException.cs │ ├── ArgumentOutOfRangeException.cs │ ├── ArithmeticException.cs │ ├── Array.Enumerators.cs │ ├── Array.cs │ ├── ArraySegment.cs │ ├── ArrayTypeMismatchException.cs │ ├── AssemblyLoadEventArgs.cs │ ├── AssemblyLoadEventHandler.cs │ ├── AsyncCallback.cs │ ├── Attribute.cs │ ├── AttributeTargets.cs │ ├── AttributeUsageAttribute.cs │ ├── BadImageFormatException.cs │ ├── BitConverter.cs │ ├── Boolean.cs │ ├── Buffer.Unix.cs │ ├── Buffer.Windows.cs │ ├── Buffer.cs │ ├── Buffers │ ├── ArrayPool.cs │ ├── ArrayPoolEventSource.cs │ ├── Binary │ │ ├── Reader.cs │ │ ├── ReaderBigEndian.cs │ │ ├── ReaderLittleEndian.cs │ │ ├── WriterBigEndian.cs │ │ └── WriterLittleEndian.cs │ ├── ConfigurableArrayPool.cs │ ├── IMemoryOwner.cs │ ├── IPinnable.cs │ ├── MemoryHandle.cs │ ├── MemoryManager.cs │ ├── OperationStatus.cs │ ├── StandardFormat.cs │ ├── Text │ │ ├── FormattingHelpers.CountDigits.cs │ │ ├── Utf8Constants.cs │ │ ├── Utf8Formatter │ │ │ ├── FormattingHelpers.cs │ │ │ ├── Utf8Formatter.Boolean.cs │ │ │ ├── Utf8Formatter.Date.G.cs │ │ │ ├── Utf8Formatter.Date.L.cs │ │ │ ├── Utf8Formatter.Date.O.cs │ │ │ ├── Utf8Formatter.Date.R.cs │ │ │ ├── Utf8Formatter.Date.cs │ │ │ ├── Utf8Formatter.Decimal.E.cs │ │ │ ├── Utf8Formatter.Decimal.F.cs │ │ │ ├── Utf8Formatter.Decimal.G.cs │ │ │ ├── Utf8Formatter.Decimal.cs │ │ │ ├── Utf8Formatter.Float.cs │ │ │ ├── Utf8Formatter.Guid.cs │ │ │ ├── Utf8Formatter.Integer.Signed.D.cs │ │ │ ├── Utf8Formatter.Integer.Signed.Default.cs │ │ │ ├── Utf8Formatter.Integer.Signed.N.cs │ │ │ ├── Utf8Formatter.Integer.Signed.cs │ │ │ ├── Utf8Formatter.Integer.Unsigned.D.cs │ │ │ ├── Utf8Formatter.Integer.Unsigned.Default.cs │ │ │ ├── Utf8Formatter.Integer.Unsigned.N.cs │ │ │ ├── Utf8Formatter.Integer.Unsigned.X.cs │ │ │ ├── Utf8Formatter.Integer.Unsigned.cs │ │ │ ├── Utf8Formatter.Integer.cs │ │ │ └── Utf8Formatter.TimeSpan.cs │ │ └── Utf8Parser │ │ │ ├── ParserHelpers.cs │ │ │ ├── Utf8Parser.Boolean.cs │ │ │ ├── Utf8Parser.Date.Default.cs │ │ │ ├── Utf8Parser.Date.G.cs │ │ │ ├── Utf8Parser.Date.Helpers.cs │ │ │ ├── Utf8Parser.Date.O.cs │ │ │ ├── Utf8Parser.Date.R.cs │ │ │ ├── Utf8Parser.Date.cs │ │ │ ├── Utf8Parser.Decimal.cs │ │ │ ├── Utf8Parser.Float.cs │ │ │ ├── Utf8Parser.Guid.cs │ │ │ ├── Utf8Parser.Integer.Signed.D.cs │ │ │ ├── Utf8Parser.Integer.Signed.N.cs │ │ │ ├── Utf8Parser.Integer.Signed.cs │ │ │ ├── Utf8Parser.Integer.Unsigned.D.cs │ │ │ ├── Utf8Parser.Integer.Unsigned.N.cs │ │ │ ├── Utf8Parser.Integer.Unsigned.X.cs │ │ │ ├── Utf8Parser.Integer.Unsigned.cs │ │ │ ├── Utf8Parser.Number.cs │ │ │ ├── Utf8Parser.TimeSpan.BigG.cs │ │ │ ├── Utf8Parser.TimeSpan.C.cs │ │ │ ├── Utf8Parser.TimeSpan.LittleG.cs │ │ │ ├── Utf8Parser.TimeSpan.cs │ │ │ └── Utf8Parser.TimeSpanSplitter.cs │ ├── TlsOverPerCoreLockedStacksArrayPool.cs │ └── Utilities.cs │ ├── ByReference.cs │ ├── Byte.cs │ ├── CLSCompliantAttribute.cs │ ├── CannotUnloadAppDomainException.cs │ ├── Char.cs │ ├── CharEnumerator.cs │ ├── CodeDom │ └── Compiler │ │ ├── GeneratedCodeAttribute.cs │ │ └── IndentedTextWriter.cs │ ├── Collections │ ├── ArrayList.cs │ ├── Comparer.cs │ ├── CompatibleComparer.cs │ ├── Concurrent │ │ ├── ConcurrentQueue.cs │ │ ├── ConcurrentQueueSegment.cs │ │ ├── IProducerConsumerCollection.cs │ │ └── IProducerConsumerCollectionDebugView.cs │ ├── DictionaryEntry.cs │ ├── Generic │ │ ├── ArraySortHelper.cs │ │ ├── Comparer.cs │ │ ├── Dictionary.cs │ │ ├── EqualityComparer.cs │ │ ├── HashSet.cs │ │ ├── HashSetEqualityComparer.cs │ │ ├── IAsyncEnumerable.cs │ │ ├── IAsyncEnumerator.cs │ │ ├── ICollection.cs │ │ ├── ICollectionDebugView.cs │ │ ├── IComparer.cs │ │ ├── IDictionary.cs │ │ ├── IDictionaryDebugView.cs │ │ ├── IEnumerable.cs │ │ ├── IEnumerator.cs │ │ ├── IEqualityComparer.cs │ │ ├── IInternalStringEqualityComparer.cs │ │ ├── IList.cs │ │ ├── IReadOnlyCollection.cs │ │ ├── IReadOnlyDictionary.cs │ │ ├── IReadOnlyList.cs │ │ ├── IReadOnlySet.cs │ │ ├── ISet.cs │ │ ├── InsertionBehavior.cs │ │ ├── KeyNotFoundException.cs │ │ ├── KeyValuePair.cs │ │ ├── List.cs │ │ ├── NonRandomizedStringEqualityComparer.cs │ │ ├── RandomizedStringEqualityComparer.cs │ │ └── ValueListBuilder.cs │ ├── HashHelpers.SerializationInfoTable.cs │ ├── HashHelpers.cs │ ├── Hashtable.cs │ ├── ICollection.cs │ ├── IComparer.cs │ ├── IDictionary.cs │ ├── IDictionaryEnumerator.cs │ ├── IEnumerable.cs │ ├── IEnumerator.cs │ ├── IEqualityComparer.cs │ ├── IHashCodeProvider.cs │ ├── IList.cs │ ├── IStructuralComparable.cs │ ├── IStructuralEquatable.cs │ ├── KeyValuePairs.cs │ ├── ListDictionaryInternal.cs │ └── ObjectModel │ │ ├── Collection.cs │ │ └── ReadOnlyCollection.cs │ ├── ComponentModel │ ├── DefaultValueAttribute.cs │ ├── EditorBrowsableAttribute.cs │ └── EditorBrowsableState.cs │ ├── Configuration │ └── Assemblies │ │ ├── AssemblyHashAlgorithm.cs │ │ └── AssemblyVersionCompatibility.cs │ ├── Context.cs │ ├── Convert.Base64.cs │ ├── Convert.cs │ ├── CoreLib.cs │ ├── CurrentSystemTimeZone.cs │ ├── DBNull.cs │ ├── DataMisalignedException.cs │ ├── DateTime.Unix.cs │ ├── DateTime.Win32.cs │ ├── DateTime.Windows.cs │ ├── DateTime.cs │ ├── DateTimeKind.cs │ ├── DateTimeOffset.cs │ ├── DayOfWeek.cs │ ├── Decimal.DecCalc.cs │ ├── Decimal.cs │ ├── DefaultBinder.cs │ ├── Delegate.cs │ ├── Diagnostics │ ├── CodeAnalysis │ │ ├── DynamicDependencyAttribute.cs │ │ ├── DynamicallyAccessedMemberTypes.cs │ │ ├── DynamicallyAccessedMembersAttribute.cs │ │ ├── NullableAttributes.cs │ │ ├── RequiresAssemblyFilesAttribute.cs │ │ ├── RequiresUnreferencedCodeAttribute.cs │ │ ├── SuppressMessageAttribute.cs │ │ └── UnconditionalSuppressMessageAttribute.cs │ ├── ConditionalAttribute.cs │ ├── Contracts │ │ ├── ContractException.cs │ │ ├── ContractFailedEventArgs.cs │ │ └── Contracts.cs │ ├── Debug.cs │ ├── DebugProvider.Unix.cs │ ├── DebugProvider.Windows.cs │ ├── DebugProvider.cs │ ├── DebuggableAttribute.cs │ ├── DebuggerBrowsableAttribute.cs │ ├── DebuggerDisplayAttribute.cs │ ├── DebuggerHiddenAttribute.cs │ ├── DebuggerNonUserCodeAttribute.cs │ ├── DebuggerStepThroughAttribute.cs │ ├── DebuggerStepperBoundaryAttribute.cs │ ├── DebuggerTypeProxyAttribute.cs │ ├── DebuggerVisualizerAttribute.cs │ ├── StackFrame.cs │ ├── StackFrameExtensions.cs │ ├── StackTrace.cs │ ├── StackTraceHiddenAttribute.cs │ ├── Stopwatch.Unix.cs │ ├── Stopwatch.Windows.cs │ ├── Stopwatch.cs │ ├── SymbolStore │ │ └── ISymbolDocumentWriter.cs │ └── Tracing │ │ ├── ActivityTracker.cs │ │ ├── CounterGroup.cs │ │ ├── CounterPayload.cs │ │ ├── DiagnosticCounter.cs │ │ ├── EventActivityOptions.cs │ │ ├── EventCounter.cs │ │ ├── EventDescriptor.cs │ │ ├── EventPipe.cs │ │ ├── EventPipeEventDispatcher.cs │ │ ├── EventPipeEventProvider.cs │ │ ├── EventPipeMetadataGenerator.cs │ │ ├── EventPipePayloadDecoder.cs │ │ ├── EventProvider.cs │ │ ├── EventSource.cs │ │ ├── EventSourceException.cs │ │ ├── FrameworkEventSource.cs │ │ ├── IEventProvider.cs │ │ ├── IncrementingEventCounter.cs │ │ ├── IncrementingPollingCounter.cs │ │ ├── NativeRuntimeEventSource.cs │ │ ├── PollingCounter.cs │ │ ├── RuntimeEventSource.cs │ │ ├── RuntimeEventSourceHelper.Unix.cs │ │ ├── RuntimeEventSourceHelper.Windows.cs │ │ ├── TraceLogging │ │ ├── ArrayTypeInfo.cs │ │ ├── ConcurrentSet.cs │ │ ├── ConcurrentSetItem.cs │ │ ├── DataCollector.cs │ │ ├── EmptyStruct.cs │ │ ├── EnumHelper.cs │ │ ├── EnumerableTypeInfo.cs │ │ ├── EventDataAttribute.cs │ │ ├── EventFieldAttribute.cs │ │ ├── EventFieldFormat.cs │ │ ├── EventIgnoreAttribute.cs │ │ ├── EventPayload.cs │ │ ├── EventSourceActivity.cs │ │ ├── EventSourceOptions.cs │ │ ├── FieldMetadata.cs │ │ ├── InvokeTypeInfo.cs │ │ ├── NameInfo.cs │ │ ├── PropertyAnalysis.cs │ │ ├── PropertyValue.cs │ │ ├── SimpleEventTypes.cs │ │ ├── SimpleTypeInfos.cs │ │ ├── Statics.cs │ │ ├── TraceLoggingDataCollector.cs │ │ ├── TraceLoggingDataType.cs │ │ ├── TraceLoggingEventHandleTable.cs │ │ ├── TraceLoggingEventSource.cs │ │ ├── TraceLoggingEventTraits.cs │ │ ├── TraceLoggingEventTypes.cs │ │ ├── TraceLoggingMetadataCollector.cs │ │ ├── TraceLoggingTypeInfo.cs │ │ ├── TypeAnalysis.cs │ │ └── XplatEventLogger.cs │ │ └── Winmeta.cs │ ├── DivideByZeroException.cs │ ├── DllNotFoundException.cs │ ├── Double.cs │ ├── DuplicateWaitObjectException.cs │ ├── Empty.cs │ ├── EntryPointNotFoundException.cs │ ├── Enum.EnumInfo.cs │ ├── Enum.cs │ ├── Environment.Browser.cs │ ├── Environment.FreeBSD.cs │ ├── Environment.GetFolderPathCore.Unix.cs │ ├── Environment.Linux.cs │ ├── Environment.NoRegistry.cs │ ├── Environment.OSVersion.OSX.cs │ ├── Environment.OSVersion.Unix.cs │ ├── Environment.OSX.cs │ ├── Environment.SpecialFolder.cs │ ├── Environment.SpecialFolderOption.cs │ ├── Environment.SunOS.cs │ ├── Environment.Unix.cs │ ├── Environment.UnixOrBrowser.cs │ ├── Environment.Variables.Windows.cs │ ├── Environment.Win32.cs │ ├── Environment.Windows.cs │ ├── Environment.cs │ ├── EnvironmentVariableTarget.cs │ ├── EventArgs.cs │ ├── EventHandler.cs │ ├── Exception.cs │ ├── ExecutionEngineException.cs │ ├── FieldAccessException.cs │ ├── FlagsAttribute.cs │ ├── FormatException.cs │ ├── FormattableString.cs │ ├── Function.cs │ ├── GCMemoryInfo.cs │ ├── Gen2GcCallback.cs │ ├── Globalization │ ├── Calendar.cs │ ├── CalendarAlgorithmType.cs │ ├── CalendarData.Icu.cs │ ├── CalendarData.Nls.cs │ ├── CalendarData.Unix.cs │ ├── CalendarData.Windows.cs │ ├── CalendarData.cs │ ├── CalendarWeekRule.cs │ ├── CalendricalCalculationsHelper.cs │ ├── CharUnicodeInfo.cs │ ├── CharUnicodeInfoData.cs │ ├── ChineseLunisolarCalendar.cs │ ├── CompareInfo.Icu.cs │ ├── CompareInfo.Invariant.cs │ ├── CompareInfo.Nls.cs │ ├── CompareInfo.cs │ ├── CompareOptions.cs │ ├── CultureData.Icu.cs │ ├── CultureData.Nls.cs │ ├── CultureData.Unix.cs │ ├── CultureData.Windows.cs │ ├── CultureData.cs │ ├── CultureInfo.Icu.cs │ ├── CultureInfo.Nls.cs │ ├── CultureInfo.Unix.cs │ ├── CultureInfo.Windows.cs │ ├── CultureInfo.cs │ ├── CultureNotFoundException.cs │ ├── CultureTypes.cs │ ├── DateTimeFormat.cs │ ├── DateTimeFormatInfo.cs │ ├── DateTimeFormatInfoScanner.cs │ ├── DateTimeParse.cs │ ├── DateTimeStyles.cs │ ├── DaylightTime.cs │ ├── DigitShapes.cs │ ├── EastAsianLunisolarCalendar.cs │ ├── GlobalizationExtensions.cs │ ├── GlobalizationMode.Unix.cs │ ├── GlobalizationMode.Windows.cs │ ├── GlobalizationMode.cs │ ├── GregorianCalendar.cs │ ├── GregorianCalendarHelper.cs │ ├── GregorianCalendarTypes.cs │ ├── HebrewCalendar.cs │ ├── HebrewNumber.cs │ ├── HijriCalendar.Unix.cs │ ├── HijriCalendar.Win32.cs │ ├── HijriCalendar.cs │ ├── ISOWeek.cs │ ├── IcuLocaleData.cs │ ├── IcuLocaleData.generator.cs │ ├── IdnMapping.Icu.cs │ ├── IdnMapping.Nls.cs │ ├── IdnMapping.cs │ ├── InternalGlobalizationHelper.cs │ ├── JapaneseCalendar.Icu.cs │ ├── JapaneseCalendar.Nls.cs │ ├── JapaneseCalendar.cs │ ├── JapaneseLunisolarCalendar.cs │ ├── JulianCalendar.cs │ ├── KoreanCalendar.cs │ ├── KoreanLunisolarCalendar.cs │ ├── Normalization.Icu.cs │ ├── Normalization.Nls.cs │ ├── Normalization.cs │ ├── NumberFormatInfo.cs │ ├── NumberStyles.cs │ ├── Ordinal.cs │ ├── OrdinalCasing.Icu.cs │ ├── PersianCalendar.cs │ ├── RegionInfo.cs │ ├── SortKey.cs │ ├── SortVersion.cs │ ├── StringInfo.cs │ ├── StrongBidiCategory.cs │ ├── TaiwanCalendar.cs │ ├── TaiwanLunisolarCalendar.cs │ ├── TextElementEnumerator.cs │ ├── TextInfo.Icu.cs │ ├── TextInfo.Nls.cs │ ├── TextInfo.cs │ ├── ThaiBuddhistCalendar.cs │ ├── TimeSpanFormat.cs │ ├── TimeSpanParse.cs │ ├── TimeSpanStyles.cs │ ├── UmAlQuraCalendar.cs │ └── UnicodeCategory.cs │ ├── Guid.Unix.cs │ ├── Guid.Windows.cs │ ├── Guid.cs │ ├── Half.cs │ ├── HashCode.cs │ ├── IAsyncDisposable.cs │ ├── IAsyncResult.cs │ ├── ICloneable.cs │ ├── IComparable.cs │ ├── IConvertible.cs │ ├── ICustomFormatter.cs │ ├── IDisposable.cs │ ├── IEquatable.cs │ ├── IFormatProvider.cs │ ├── IFormattable.cs │ ├── IO │ ├── BinaryReader.cs │ ├── BinaryWriter.cs │ ├── BufferedStream.cs │ ├── DerivedFileStreamStrategy.cs │ ├── DirectoryNotFoundException.cs │ ├── DisableMediaInsertionPrompt.cs │ ├── DriveInfoInternal.Browser.cs │ ├── DriveInfoInternal.Unix.cs │ ├── DriveInfoInternal.Windows.cs │ ├── EncodingCache.cs │ ├── EndOfStreamException.cs │ ├── Error.cs │ ├── FileAccess.cs │ ├── FileAttributes.cs │ ├── FileLoadException.cs │ ├── FileMode.cs │ ├── FileNotFoundException.cs │ ├── FileOptions.cs │ ├── FileShare.cs │ ├── FileStream.cs │ ├── FileStreamCompletionSource.Win32.cs │ ├── FileStreamHelpers.Unix.cs │ ├── FileStreamHelpers.Windows.cs │ ├── FileStreamStrategy.cs │ ├── HandleInheritability.cs │ ├── IOException.cs │ ├── InvalidDataException.cs │ ├── LegacyFileStreamStrategy.Lock.OSX.cs │ ├── LegacyFileStreamStrategy.Lock.Unix.cs │ ├── LegacyFileStreamStrategy.Unix.cs │ ├── LegacyFileStreamStrategy.Windows.cs │ ├── LegacyFileStreamStrategy.cs │ ├── MemoryStream.cs │ ├── Path.Unix.cs │ ├── Path.Windows.cs │ ├── Path.cs │ ├── PathHelper.Windows.cs │ ├── PathInternal.Unix.cs │ ├── PathInternal.Windows.cs │ ├── PathInternal.cs │ ├── PathTooLongException.cs │ ├── PersistedFiles.Browser.cs │ ├── PersistedFiles.Names.Unix.cs │ ├── PersistedFiles.Unix.cs │ ├── PinnedBufferMemoryStream.cs │ ├── SeekOrigin.cs │ ├── Stream.cs │ ├── StreamReader.cs │ ├── StreamWriter.cs │ ├── StringReader.cs │ ├── StringWriter.cs │ ├── TextReader.cs │ ├── TextWriter.cs │ ├── UnmanagedMemoryAccessor.cs │ ├── UnmanagedMemoryStream.cs │ └── UnmanagedMemoryStreamWrapper.cs │ ├── IObservable.cs │ ├── IObserver.cs │ ├── IProgress.cs │ ├── ISpanFormattable.cs │ ├── Index.cs │ ├── IndexOutOfRangeException.cs │ ├── InsufficientExecutionStackException.cs │ ├── InsufficientMemoryException.cs │ ├── Int16.cs │ ├── Int32.cs │ ├── Int64.cs │ ├── IntPtr.cs │ ├── InvalidCastException.cs │ ├── InvalidOperationException.cs │ ├── InvalidProgramException.cs │ ├── InvalidTimeZoneException.cs │ ├── Lazy.cs │ ├── LazyOfTTMetadata.cs │ ├── LoaderOptimization.cs │ ├── LoaderOptimizationAttribute.cs │ ├── LocalAppContextSwitches.cs │ ├── LocalDataStoreSlot.cs │ ├── MarshalByRefObject.cs │ ├── Marvin.OrdinalIgnoreCase.cs │ ├── Marvin.cs │ ├── Math.cs │ ├── MathF.cs │ ├── MemberAccessException.cs │ ├── Memory.cs │ ├── MemoryDebugView.cs │ ├── MemoryExtensions.Globalization.cs │ ├── MemoryExtensions.Trim.cs │ ├── MemoryExtensions.cs │ ├── MethodAccessException.cs │ ├── MidpointRounding.cs │ ├── MissingFieldException.cs │ ├── MissingMemberException.cs │ ├── MissingMethodException.cs │ ├── MulticastNotSupportedException.cs │ ├── Net │ └── WebUtility.cs │ ├── NonSerializedAttribute.cs │ ├── NotFiniteNumberException.cs │ ├── NotImplementedException.cs │ ├── NotSupportedException.cs │ ├── NullReferenceException.cs │ ├── Nullable.cs │ ├── Number.BigInteger.cs │ ├── Number.DiyFp.cs │ ├── Number.Dragon4.cs │ ├── Number.Formatting.cs │ ├── Number.Grisu3.cs │ ├── Number.NumberBuffer.cs │ ├── Number.NumberToFloatingPointBits.cs │ ├── Number.Parsing.cs │ ├── Numerics │ ├── BitOperations.cs │ ├── Hashing │ │ └── HashHelpers.cs │ ├── Matrix3x2.cs │ ├── Matrix4x4.cs │ ├── Plane.cs │ ├── Quaternion.cs │ ├── Register.cs │ ├── Vector.cs │ ├── Vector2.cs │ ├── Vector3.cs │ ├── Vector4.cs │ ├── VectorMath.cs │ └── Vector_1.cs │ ├── Object.cs │ ├── ObjectDisposedException.cs │ ├── ObsoleteAttribute.cs │ ├── OperatingSystem.cs │ ├── OperationCanceledException.cs │ ├── OutOfMemoryException.cs │ ├── OverflowException.cs │ ├── ParamArrayAttribute.cs │ ├── ParamsArray.cs │ ├── ParseNumbers.cs │ ├── PasteArguments.Unix.cs │ ├── PasteArguments.Windows.cs │ ├── PasteArguments.cs │ ├── PlatformID.cs │ ├── PlatformNotSupportedException.cs │ ├── Progress.cs │ ├── Random.ImplBase.cs │ ├── Random.LegacyImpl.cs │ ├── Random.Xoshiro128StarStarImpl.cs │ ├── Random.Xoshiro256StarStarImpl.cs │ ├── Random.cs │ ├── Range.cs │ ├── RankException.cs │ ├── ReadOnlyMemory.cs │ ├── ReadOnlySpan.cs │ ├── Reflection │ ├── AmbiguousMatchException.cs │ ├── Assembly.cs │ ├── AssemblyAlgorithmIdAttribute.cs │ ├── AssemblyCompanyAttribute.cs │ ├── AssemblyConfigurationAttribute.cs │ ├── AssemblyContentType.cs │ ├── AssemblyCopyrightAttribute.cs │ ├── AssemblyCultureAttribute.cs │ ├── AssemblyDefaultAliasAttribute.cs │ ├── AssemblyDelaySignAttribute.cs │ ├── AssemblyDescriptionAttribute.cs │ ├── AssemblyFileVersionAttribute.cs │ ├── AssemblyFlagsAttribute.cs │ ├── AssemblyInformationalVersionAttribute.cs │ ├── AssemblyKeyFileAttribute.cs │ ├── AssemblyKeyNameAttribute.cs │ ├── AssemblyMetadataAttribute.cs │ ├── AssemblyName.cs │ ├── AssemblyNameFlags.cs │ ├── AssemblyNameFormatter.cs │ ├── AssemblyNameProxy.cs │ ├── AssemblyProductAttribute.cs │ ├── AssemblySignatureKeyAttribute.cs │ ├── AssemblyTitleAttribute.cs │ ├── AssemblyTrademarkAttribute.cs │ ├── AssemblyVersionAttribute.cs │ ├── Binder.cs │ ├── BindingFlags.cs │ ├── CallingConventions.cs │ ├── ConstructorInfo.cs │ ├── CorElementType.cs │ ├── CustomAttributeExtensions.cs │ ├── CustomAttributeFormatException.cs │ ├── CustomAttributeNamedArgument.cs │ ├── CustomAttributeTypedArgument.cs │ ├── DefaultMemberAttribute.cs │ ├── Emit │ │ ├── AssemblyBuilder.cs │ │ ├── AssemblyBuilderAccess.cs │ │ ├── EmptyCAHolder.cs │ │ ├── FlowControl.cs │ │ ├── Label.cs │ │ ├── OpCodeType.cs │ │ ├── OpCodes.cs │ │ ├── Opcode.cs │ │ ├── OperandType.cs │ │ ├── PEFileKinds.cs │ │ ├── PackingSize.cs │ │ ├── StackBehaviour.cs │ │ └── TypeNameBuilder.cs │ ├── EventAttributes.cs │ ├── EventInfo.cs │ ├── ExceptionHandlingClause.cs │ ├── ExceptionHandlingClauseOptions.cs │ ├── FieldAttributes.cs │ ├── FieldInfo.cs │ ├── GenericParameterAttributes.cs │ ├── ICustomAttributeProvider.cs │ ├── IReflect.cs │ ├── IReflectableType.cs │ ├── ImageFileMachine.cs │ ├── InterfaceMapping.cs │ ├── IntrospectionExtensions.cs │ ├── InvalidFilterCriteriaException.cs │ ├── LocalVariableInfo.cs │ ├── ManifestResourceInfo.cs │ ├── MemberFilter.cs │ ├── MemberInfo.cs │ ├── MemberTypes.cs │ ├── MethodAttributes.cs │ ├── MethodBase.cs │ ├── MethodBody.cs │ ├── MethodImplAttributes.cs │ ├── MethodInfo.Internal.cs │ ├── MethodInfo.cs │ ├── Missing.cs │ ├── Module.cs │ ├── ModuleResolveEventHandler.cs │ ├── ObfuscateAssemblyAttribute.cs │ ├── ObfuscationAttribute.cs │ ├── ParameterAttributes.cs │ ├── ParameterInfo.cs │ ├── ParameterModifier.cs │ ├── Pointer.cs │ ├── PortableExecutableKinds.cs │ ├── ProcessorArchitecture.cs │ ├── PropertyAttributes.cs │ ├── PropertyInfo.cs │ ├── ReflectionContext.cs │ ├── ReflectionTypeLoadException.cs │ ├── ResourceAttributes.cs │ ├── ResourceLocation.cs │ ├── RuntimeMethodBody.cs │ ├── RuntimeReflectionExtensions.cs │ ├── SignatureArrayType.cs │ ├── SignatureByRefType.cs │ ├── SignatureConstructedGenericType.cs │ ├── SignatureGenericMethodParameterType.cs │ ├── SignatureGenericParameterType.cs │ ├── SignatureHasElementType.cs │ ├── SignaturePointerType.cs │ ├── SignatureType.cs │ ├── SignatureTypeExtensions.cs │ ├── StrongNameKeyPair.cs │ ├── TargetException.cs │ ├── TargetInvocationException.cs │ ├── TargetParameterCountException.cs │ ├── TypeAttributes.cs │ ├── TypeDelegator.cs │ ├── TypeFilter.cs │ └── TypeInfo.cs │ ├── ResolveEventArgs.cs │ ├── ResolveEventHandler.cs │ ├── Resources │ ├── FastResourceComparer.cs │ ├── FileBasedResourceGroveler.cs │ ├── IResourceGroveler.cs │ ├── IResourceReader.cs │ ├── ManifestBasedResourceGroveler.cs │ ├── MissingManifestResourceException.cs │ ├── MissingSatelliteAssemblyException.cs │ ├── NeutralResourcesLanguageAttribute.cs │ ├── ResourceFallbackManager.cs │ ├── ResourceManager.cs │ ├── ResourceReader.Core.cs │ ├── ResourceReader.cs │ ├── ResourceSet.cs │ ├── ResourceTypeCode.cs │ ├── RuntimeResourceSet.cs │ ├── SatelliteContractVersionAttribute.cs │ └── UltimateResourceFallbackLocation.cs │ ├── Runtime │ ├── AmbiguousImplementationException.cs │ ├── CompilerServices │ │ ├── AccessedThroughPropertyAttribute.cs │ │ ├── AsyncIteratorMethodBuilder.cs │ │ ├── AsyncIteratorStateMachineAttribute.cs │ │ ├── AsyncMethodBuilderAttribute.cs │ │ ├── AsyncMethodBuilderCore.cs │ │ ├── AsyncStateMachineAttribute.cs │ │ ├── AsyncTaskMethodBuilder.cs │ │ ├── AsyncTaskMethodBuilderT.cs │ │ ├── AsyncValueTaskMethodBuilder.cs │ │ ├── AsyncValueTaskMethodBuilderT.cs │ │ ├── AsyncVoidMethodBuilder.cs │ │ ├── CallerArgumentExpressionAttribute.cs │ │ ├── CallerFilePathAttribute.cs │ │ ├── CallerLineNumberAttribute.cs │ │ ├── CallerMemberNameAttribute.cs │ │ ├── CallingConventions.cs │ │ ├── CompilationRelaxations.cs │ │ ├── CompilationRelaxationsAttribute.cs │ │ ├── CompilerGeneratedAttribute.cs │ │ ├── CompilerGlobalScopeAttribute.cs │ │ ├── ConditionalWeakTable.cs │ │ ├── ConfiguredAsyncDisposable.cs │ │ ├── ConfiguredCancelableAsyncEnumerable.cs │ │ ├── ConfiguredValueTaskAwaitable.cs │ │ ├── ContractHelper.cs │ │ ├── CustomConstantAttribute.cs │ │ ├── DateTimeConstantAttribute.cs │ │ ├── DecimalConstantAttribute.cs │ │ ├── DefaultDependencyAttribute.cs │ │ ├── DependencyAttribute.cs │ │ ├── DisablePrivateReflectionAttribute.cs │ │ ├── DiscardableAttribute.cs │ │ ├── EnumeratorCancellationAttribute.cs │ │ ├── ExtensionAttribute.cs │ │ ├── FixedAddressValueTypeAttribute.cs │ │ ├── FixedBufferAttribute.cs │ │ ├── FormattableStringFactory.cs │ │ ├── IAsyncStateMachine.cs │ │ ├── IAsyncStateMachineBox.cs │ │ ├── ICastable.cs │ │ ├── INotifyCompletion.cs │ │ ├── ITuple.cs │ │ ├── IndexerNameAttribute.cs │ │ ├── InternalsVisibleToAttribute.cs │ │ ├── IntrinsicAttribute.cs │ │ ├── IsByRefLikeAttribute.cs │ │ ├── IsConst.cs │ │ ├── IsExternalInit.cs │ │ ├── IsReadOnlyAttribute.cs │ │ ├── IsVolatile.cs │ │ ├── IteratorStateMachineAttribute.cs │ │ ├── LoadHint.cs │ │ ├── MethodCodeType.cs │ │ ├── MethodImplAttribute.cs │ │ ├── MethodImplOptions.cs │ │ ├── ModuleInitializerAttribute.cs │ │ ├── PreserveBaseOverridesAttribute.cs │ │ ├── QCallHandles.cs │ │ ├── ReferenceAssemblyAttribute.cs │ │ ├── RuntimeCompatibilityAttribute.cs │ │ ├── RuntimeFeature.cs │ │ ├── RuntimeHelpers.cs │ │ ├── RuntimeWrappedException.cs │ │ ├── SkipLocalsInitAttribute.cs │ │ ├── SpecialNameAttribute.cs │ │ ├── StateMachineAttribute.cs │ │ ├── StringFreezingAttribute.cs │ │ ├── StrongBox.cs │ │ ├── SuppressIldasmAttribute.cs │ │ ├── SwitchExpressionException.cs │ │ ├── TaskAwaiter.cs │ │ ├── TupleElementNamesAttribute.cs │ │ ├── TypeForwardedFromAttribute.cs │ │ ├── TypeForwardedToAttribute.cs │ │ ├── UnsafeValueTypeAttribute.cs │ │ ├── ValueTaskAwaiter.cs │ │ └── YieldAwaitable.cs │ ├── ConstrainedExecution │ │ ├── Cer.cs │ │ ├── Consistency.cs │ │ ├── CriticalFinalizerObject.cs │ │ ├── PrePrepareMethodAttribute.cs │ │ └── ReliabilityContractAttribute.cs │ ├── ExceptionServices │ │ ├── ExceptionDispatchInfo.cs │ │ ├── ExceptionNotification.cs │ │ └── HandleProcessCorruptedStateExceptionsAttribute.cs │ ├── GCSettings.cs │ ├── InteropServices │ │ ├── AllowReversePInvokeCallsAttribute.cs │ │ ├── ArrayWithOffset.cs │ │ ├── BStrWrapper.cs │ │ ├── BestFitMappingAttribute.cs │ │ ├── CLong.cs │ │ ├── COMException.cs │ │ ├── CULong.cs │ │ ├── CallingConvention.cs │ │ ├── CharSet.cs │ │ ├── ClassInterfaceAttribute.cs │ │ ├── ClassInterfaceType.cs │ │ ├── CoClassAttribute.cs │ │ ├── CollectionsMarshal.cs │ │ ├── ComDefaultInterfaceAttribute.cs │ │ ├── ComEventInterfaceAttribute.cs │ │ ├── ComEventsHelpers.NoCom.cs │ │ ├── ComImportAttribute.cs │ │ ├── ComInterfaceType.cs │ │ ├── ComMemberType.cs │ │ ├── ComSourceInterfacesAttribute.cs │ │ ├── ComTypes │ │ │ ├── IBindCtx.cs │ │ │ ├── IConnectionPoint.cs │ │ │ ├── IConnectionPointContainer.cs │ │ │ ├── IEnumConnectionPoints.cs │ │ │ ├── IEnumConnections.cs │ │ │ ├── IEnumMoniker.cs │ │ │ ├── IEnumString.cs │ │ │ ├── IEnumVARIANT.cs │ │ │ ├── IMoniker.cs │ │ │ ├── IPersistFile.cs │ │ │ ├── IRunningObjectTable.cs │ │ │ ├── IStream.cs │ │ │ ├── ITypeComp.cs │ │ │ ├── ITypeInfo.cs │ │ │ ├── ITypeInfo2.cs │ │ │ ├── ITypeLib.cs │ │ │ └── ITypeLib2.cs │ │ ├── ComVisibleAttribute.cs │ │ ├── ComWrappers.PlatformNotSupported.cs │ │ ├── ComWrappers.cs │ │ ├── CriticalHandle.cs │ │ ├── CurrencyWrapper.cs │ │ ├── CustomQueryInterfaceMode.cs │ │ ├── CustomQueryInterfaceResult.cs │ │ ├── DefaultCharSetAttribute.cs │ │ ├── DefaultDllImportSearchPathsAttribute.cs │ │ ├── DefaultParameterValueAttribute.cs │ │ ├── DispIdAttribute.cs │ │ ├── DispatchWrapper.cs │ │ ├── DllImportAttribute.cs │ │ ├── DllImportSearchPath.cs │ │ ├── ErrorWrapper.cs │ │ ├── ExternalException.cs │ │ ├── FieldOffsetAttribute.cs │ │ ├── GCHandle.cs │ │ ├── GCHandleType.cs │ │ ├── GuidAttribute.cs │ │ ├── HandleRef.cs │ │ ├── ICustomAdapter.cs │ │ ├── ICustomFactory.cs │ │ ├── ICustomMarshaler.cs │ │ ├── ICustomQueryInterface.cs │ │ ├── IDynamicInterfaceCastable.cs │ │ ├── InAttribute.cs │ │ ├── InterfaceTypeAttribute.cs │ │ ├── InvalidComObjectException.cs │ │ ├── InvalidOleVariantTypeException.cs │ │ ├── LCIDConversionAttribute.cs │ │ ├── LayoutKind.cs │ │ ├── Marshal.NoCom.cs │ │ ├── Marshal.Unix.cs │ │ ├── Marshal.Windows.cs │ │ ├── Marshal.cs │ │ ├── MarshalAsAttribute.cs │ │ ├── MarshalDirectiveException.cs │ │ ├── MemoryMarshal.cs │ │ ├── NFloat.cs │ │ ├── NativeLibrary.cs │ │ ├── OptionalAttribute.cs │ │ ├── OutAttribute.cs │ │ ├── PreserveSigAttribute.cs │ │ ├── ProgIdAttribute.cs │ │ ├── SEHException.cs │ │ ├── SafeArrayRankMismatchException.cs │ │ ├── SafeArrayTypeMismatchException.cs │ │ ├── SafeBuffer.cs │ │ ├── SafeHandle.cs │ │ ├── StandardOleMarshalObject.Unix.cs │ │ ├── StandardOleMarshalObject.Windows.cs │ │ ├── StructLayoutAttribute.cs │ │ ├── SuppressGCTransitionAttribute.cs │ │ ├── TypeIdentifierAttribute.cs │ │ ├── UnknownWrapper.cs │ │ ├── UnmanagedCallersOnlyAttribute.cs │ │ ├── UnmanagedFunctionPointerAttribute.cs │ │ ├── UnmanagedType.cs │ │ ├── VarEnum.cs │ │ └── VariantWrapper.cs │ ├── Intrinsics │ │ ├── Arm │ │ │ ├── AdvSimd.PlatformNotSupported.cs │ │ │ ├── AdvSimd.cs │ │ │ ├── Aes.PlatformNotSupported.cs │ │ │ ├── Aes.cs │ │ │ ├── ArmBase.PlatformNotSupported.cs │ │ │ ├── ArmBase.cs │ │ │ ├── Crc32.PlatformNotSupported.cs │ │ │ ├── Crc32.cs │ │ │ ├── Dp.PlatformNotSupported.cs │ │ │ ├── Dp.cs │ │ │ ├── Rdm.PlatformNotSupported.cs │ │ │ ├── Rdm.cs │ │ │ ├── Sha1.PlatformNotSupported.cs │ │ │ ├── Sha1.cs │ │ │ ├── Sha256.PlatformNotSupported.cs │ │ │ └── Sha256.cs │ │ ├── Vector128.cs │ │ ├── Vector128DebugView_1.cs │ │ ├── Vector128_1.cs │ │ ├── Vector256.cs │ │ ├── Vector256DebugView_1.cs │ │ ├── Vector256_1.cs │ │ ├── Vector64.cs │ │ ├── Vector64DebugView_1.cs │ │ ├── Vector64_1.cs │ │ └── X86 │ │ │ ├── Aes.PlatformNotSupported.cs │ │ │ ├── Aes.cs │ │ │ ├── Avx.PlatformNotSupported.cs │ │ │ ├── Avx.cs │ │ │ ├── Avx2.PlatformNotSupported.cs │ │ │ ├── Avx2.cs │ │ │ ├── Bmi1.PlatformNotSupported.cs │ │ │ ├── Bmi1.cs │ │ │ ├── Bmi2.PlatformNotSupported.cs │ │ │ ├── Bmi2.cs │ │ │ ├── Enums.cs │ │ │ ├── Fma.PlatformNotSupported.cs │ │ │ ├── Fma.cs │ │ │ ├── Lzcnt.PlatformNotSupported.cs │ │ │ ├── Lzcnt.cs │ │ │ ├── Pclmulqdq.PlatformNotSupported.cs │ │ │ ├── Pclmulqdq.cs │ │ │ ├── Popcnt.PlatformNotSupported.cs │ │ │ ├── Popcnt.cs │ │ │ ├── Sse.PlatformNotSupported.cs │ │ │ ├── Sse.cs │ │ │ ├── Sse2.PlatformNotSupported.cs │ │ │ ├── Sse2.cs │ │ │ ├── Sse3.PlatformNotSupported.cs │ │ │ ├── Sse3.cs │ │ │ ├── Sse41.PlatformNotSupported.cs │ │ │ ├── Sse41.cs │ │ │ ├── Sse42.PlatformNotSupported.cs │ │ │ ├── Sse42.cs │ │ │ ├── Ssse3.PlatformNotSupported.cs │ │ │ ├── Ssse3.cs │ │ │ ├── X86Base.PlatformNotSupported.cs │ │ │ └── X86Base.cs │ ├── Loader │ │ ├── AssemblyDependencyResolver.cs │ │ ├── AssemblyLoadContext.cs │ │ ├── LibraryNameVariation.Unix.cs │ │ ├── LibraryNameVariation.Windows.cs │ │ └── LibraryNameVariation.cs │ ├── MemoryFailPoint.Unix.cs │ ├── MemoryFailPoint.Windows.cs │ ├── MemoryFailPoint.cs │ ├── NgenServicingAttributes.cs │ ├── ProfileOptimization.cs │ ├── Remoting │ │ └── ObjectHandle.cs │ ├── Serialization │ │ ├── DeserializationToken.cs │ │ ├── DeserializationTracker.cs │ │ ├── IDeserializationCallback.cs │ │ ├── IFormatterConverter.cs │ │ ├── IObjectReference.cs │ │ ├── ISafeSerializationData.cs │ │ ├── ISerializable.cs │ │ ├── OnDeserializedAttribute.cs │ │ ├── OnDeserializingAttribute.cs │ │ ├── OnSerializedAttribute.cs │ │ ├── OnSerializingAttribute.cs │ │ ├── OptionalFieldAttribute.cs │ │ ├── SafeSerializationEventArgs.cs │ │ ├── SerializationException.cs │ │ ├── SerializationInfo.SerializationGuard.cs │ │ ├── SerializationInfo.cs │ │ ├── SerializationInfoEnumerator.cs │ │ └── StreamingContext.cs │ └── Versioning │ │ ├── ComponentGuaranteesAttribute.cs │ │ ├── ComponentGuaranteesOptions.cs │ │ ├── FrameworkName.cs │ │ ├── PlatformAttributes.cs │ │ ├── ResourceConsumptionAttribute.cs │ │ ├── ResourceExposureAttribute.cs │ │ ├── ResourceScope.cs │ │ ├── TargetFrameworkAttribute.cs │ │ └── VersioningHelper.cs │ ├── RuntimeType.cs │ ├── SByte.cs │ ├── SR.cs │ ├── Security │ ├── AllowPartiallyTrustedCallersAttribute.cs │ ├── CryptographicException.cs │ ├── IPermission.cs │ ├── ISecurityEncodable.cs │ ├── IStackWalk.cs │ ├── PartialTrustVisibilityLevel.cs │ ├── PermissionSet.cs │ ├── Permissions │ │ ├── CodeAccessSecurityAttribute.cs │ │ ├── PermissionState.cs │ │ ├── SecurityAction.cs │ │ ├── SecurityAttribute.cs │ │ ├── SecurityPermissionAttribute.cs │ │ └── SecurityPermissionFlag.cs │ ├── Principal │ │ ├── IIdentity.cs │ │ ├── IPrincipal.cs │ │ ├── PrincipalPolicy.cs │ │ └── TokenImpersonationLevel.cs │ ├── SecureString.Unix.cs │ ├── SecureString.Windows.cs │ ├── SecureString.cs │ ├── SecurityCriticalAttribute.cs │ ├── SecurityCriticalScope.cs │ ├── SecurityElement.cs │ ├── SecurityException.cs │ ├── SecurityRuleSet.cs │ ├── SecurityRulesAttribute.cs │ ├── SecuritySafeCriticalAttribute.cs │ ├── SecurityTransparentAttribute.cs │ ├── SecurityTreatAsSafeAttribute.cs │ ├── SuppressUnmanagedCodeSecurityAttribute.cs │ ├── UnverifiableCodeAttribute.cs │ └── VerificationException.cs │ ├── SerializableAttribute.cs │ ├── Single.cs │ ├── Span.cs │ ├── SpanDebugView.cs │ ├── SpanHelpers.BinarySearch.cs │ ├── SpanHelpers.Byte.cs │ ├── SpanHelpers.Char.cs │ ├── SpanHelpers.T.cs │ ├── SpanHelpers.cs │ ├── StackOverflowException.cs │ ├── String.Comparison.cs │ ├── String.Manipulation.cs │ ├── String.Searching.cs │ ├── String.cs │ ├── StringComparer.cs │ ├── StringComparison.cs │ ├── StringNormalizationExtensions.cs │ ├── StringSplitOptions.cs │ ├── SystemException.cs │ ├── Text │ ├── ASCIIEncoding.cs │ ├── ASCIIUtility.Helpers.cs │ ├── ASCIIUtility.cs │ ├── CodePageDataItem.cs │ ├── Decoder.cs │ ├── DecoderExceptionFallback.cs │ ├── DecoderFallback.cs │ ├── DecoderNLS.cs │ ├── DecoderReplacementFallback.cs │ ├── Encoder.cs │ ├── EncoderExceptionFallback.cs │ ├── EncoderFallback.cs │ ├── EncoderLatin1BestFitFallback.Data.cs │ ├── EncoderLatin1BestFitFallback.cs │ ├── EncoderNLS.cs │ ├── EncoderReplacementFallback.cs │ ├── Encoding.Internal.cs │ ├── Encoding.cs │ ├── EncodingData.cs │ ├── EncodingInfo.cs │ ├── EncodingProvider.cs │ ├── EncodingTable.cs │ ├── Latin1Encoding.Sealed.cs │ ├── Latin1Encoding.cs │ ├── Latin1Utility.Helpers.cs │ ├── Latin1Utility.cs │ ├── NormalizationForm.cs │ ├── Rune.cs │ ├── SpanRuneEnumerator.cs │ ├── StringBuilder.Debug.cs │ ├── StringBuilder.cs │ ├── StringRuneEnumerator.cs │ ├── TranscodingStream.cs │ ├── TrimType.cs │ ├── UTF32Encoding.cs │ ├── UTF7Encoding.cs │ ├── UTF8Encoding.Sealed.cs │ ├── UTF8Encoding.cs │ ├── Unicode │ │ ├── GraphemeClusterBreakType.cs │ │ ├── TextSegmentationUtility.cs │ │ ├── Utf16Utility.Validation.cs │ │ ├── Utf16Utility.cs │ │ ├── Utf8.cs │ │ ├── Utf8Utility.Helpers.cs │ │ ├── Utf8Utility.Transcoding.cs │ │ ├── Utf8Utility.Validation.cs │ │ ├── Utf8Utility.WhiteSpace.CoreLib.cs │ │ ├── Utf8Utility.WhiteSpace.NonCoreLib.cs │ │ └── Utf8Utility.cs │ ├── UnicodeDebug.cs │ ├── UnicodeEncoding.cs │ ├── UnicodeUtility.cs │ └── ValueStringBuilder.AppendFormat.cs │ ├── ThreadAttributes.cs │ ├── ThreadStaticAttribute.cs │ ├── Threading │ ├── AbandonedMutexException.cs │ ├── ApartmentState.cs │ ├── AsyncLocal.cs │ ├── AutoResetEvent.cs │ ├── CancellationToken.cs │ ├── CancellationTokenRegistration.cs │ ├── CancellationTokenSource.cs │ ├── CompressedStack.cs │ ├── DeferredDisposableLifetime.cs │ ├── EventResetMode.cs │ ├── EventWaitHandle.Unix.cs │ ├── EventWaitHandle.Windows.cs │ ├── EventWaitHandle.cs │ ├── ExecutionContext.cs │ ├── IOCompletionCallback.cs │ ├── IThreadPoolWorkItem.cs │ ├── Interlocked.cs │ ├── LazyInitializer.cs │ ├── LazyThreadSafetyMode.cs │ ├── LockRecursionException.cs │ ├── LowLevelLifoSemaphore.Windows.cs │ ├── LowLevelLifoSemaphore.cs │ ├── LowLevelLock.cs │ ├── LowLevelMonitor.Unix.cs │ ├── LowLevelMonitor.Windows.cs │ ├── LowLevelMonitor.cs │ ├── LowLevelSpinWaiter.cs │ ├── ManualResetEvent.cs │ ├── ManualResetEventSlim.cs │ ├── Monitor.cs │ ├── Mutex.Unix.cs │ ├── Mutex.Windows.cs │ ├── Mutex.cs │ ├── NativeOverlapped.cs │ ├── NativeRuntimeEventSource.PortableThreadPool.cs │ ├── ParameterizedThreadStart.cs │ ├── PortableThreadPool.CpuUtilizationReader.Unix.cs │ ├── PortableThreadPool.CpuUtilizationReader.Windows.cs │ ├── PortableThreadPool.GateThread.cs │ ├── PortableThreadPool.HillClimbing.Complex.cs │ ├── PortableThreadPool.HillClimbing.cs │ ├── PortableThreadPool.ThreadCounts.cs │ ├── PortableThreadPool.WaitThread.cs │ ├── PortableThreadPool.WorkerThread.cs │ ├── PortableThreadPool.WorkerTracking.cs │ ├── PortableThreadPool.cs │ ├── ReaderWriterLockSlim.cs │ ├── RegisteredWaitHandle.Portable.cs │ ├── Semaphore.Unix.cs │ ├── Semaphore.Windows.cs │ ├── Semaphore.cs │ ├── SemaphoreFullException.cs │ ├── SemaphoreSlim.cs │ ├── SendOrPostCallback.cs │ ├── SpinLock.cs │ ├── SpinWait.cs │ ├── StackCrawlMark.cs │ ├── SynchronizationContext.cs │ ├── SynchronizationLockException.cs │ ├── Tasks │ │ ├── AsyncCausalityTracerConstants.cs │ │ ├── ConcurrentExclusiveSchedulerPair.cs │ │ ├── Future.cs │ │ ├── FutureFactory.cs │ │ ├── ProducerConsumerQueues.cs │ │ ├── Sources │ │ │ ├── IValueTaskSource.cs │ │ │ └── ManualResetValueTaskSourceCore.cs │ │ ├── Task.cs │ │ ├── TaskAsyncEnumerableExtensions.cs │ │ ├── TaskCache.cs │ │ ├── TaskCanceledException.cs │ │ ├── TaskCompletionSource.cs │ │ ├── TaskCompletionSource_T.cs │ │ ├── TaskContinuation.cs │ │ ├── TaskExceptionHolder.cs │ │ ├── TaskExtensions.cs │ │ ├── TaskFactory.cs │ │ ├── TaskScheduler.cs │ │ ├── TaskSchedulerException.cs │ │ ├── ThreadPoolTaskScheduler.cs │ │ ├── TplEventSource.cs │ │ └── ValueTask.cs │ ├── Thread.cs │ ├── ThreadAbortException.cs │ ├── ThreadExceptionEventArgs.cs │ ├── ThreadInt64PersistentCounter.cs │ ├── ThreadInterruptedException.cs │ ├── ThreadLocal.cs │ ├── ThreadPool.Portable.cs │ ├── ThreadPoolBoundHandle.PlatformNotSupported.cs │ ├── ThreadPoolWorkQueue.AutoreleasePool.OSX.cs │ ├── ThreadPoolWorkQueue.cs │ ├── ThreadPriority.cs │ ├── ThreadStart.cs │ ├── ThreadStartException.cs │ ├── ThreadState.cs │ ├── ThreadStateException.cs │ ├── Timeout.cs │ ├── TimeoutHelper.cs │ ├── Timer.cs │ ├── TimerQueue.Portable.cs │ ├── TimerQueue.Unix.cs │ ├── TimerQueue.Windows.cs │ ├── Volatile.cs │ ├── WaitHandle.Unix.cs │ ├── WaitHandle.cs │ ├── WaitHandleCannotBeOpenedException.cs │ ├── WaitHandleExtensions.cs │ ├── WaitSubsystem.HandleManager.Unix.cs │ ├── WaitSubsystem.ThreadWaitInfo.Unix.cs │ ├── WaitSubsystem.Unix.cs │ └── WaitSubsystem.WaitableObject.Unix.cs │ ├── ThrowHelper.cs │ ├── TimeSpan.cs │ ├── TimeZone.cs │ ├── TimeZoneInfo.AdjustmentRule.cs │ ├── TimeZoneInfo.GetDisplayName.Invariant.cs │ ├── TimeZoneInfo.GetDisplayName.cs │ ├── TimeZoneInfo.StringSerializer.cs │ ├── TimeZoneInfo.TransitionTime.cs │ ├── TimeZoneInfo.Unix.cs │ ├── TimeZoneInfo.Win32.cs │ ├── TimeZoneInfo.cs │ ├── TimeZoneNotFoundException.cs │ ├── TimeoutException.cs │ ├── Tuple.cs │ ├── TupleExtensions.cs │ ├── TupleSlim.cs │ ├── Type.Enum.cs │ ├── Type.Helpers.cs │ ├── Type.cs │ ├── TypeAccessException.cs │ ├── TypeCode.cs │ ├── TypeInitializationException.cs │ ├── TypeLoadException.cs │ ├── TypeUnloadedException.cs │ ├── UInt16.cs │ ├── UInt32.cs │ ├── UInt64.cs │ ├── UIntPtr.cs │ ├── UnauthorizedAccessException.cs │ ├── UnhandledExceptionEventArgs.cs │ ├── UnhandledExceptionEventHandler.cs │ ├── UnitySerializationHolder.cs │ ├── Utf8Extensions.CoreLib.cs │ ├── Utf8Extensions.cs │ ├── ValueTuple.cs │ ├── Version.cs │ ├── Void.cs │ ├── WeakReference.T.cs │ └── WeakReference.cs └── res ├── RTCLI.png └── architecture.png /.gitignore: -------------------------------------------------------------------------------- 1 | /Solution 2 | /build 3 | .vs 4 | /.vscode 5 | obj 6 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/README.md -------------------------------------------------------------------------------- /RTCLI.AOT/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Array.h -------------------------------------------------------------------------------- /RTCLI.AOT/Boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Boolean.h -------------------------------------------------------------------------------- /RTCLI.AOT/Console/Write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Console/Write.h -------------------------------------------------------------------------------- /RTCLI.AOT/Delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Delegate.h -------------------------------------------------------------------------------- /RTCLI.AOT/Enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Enum.h -------------------------------------------------------------------------------- /RTCLI.AOT/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Exception.h -------------------------------------------------------------------------------- /RTCLI.AOT/IL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/IL.h -------------------------------------------------------------------------------- /RTCLI.AOT/Int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Int.h -------------------------------------------------------------------------------- /RTCLI.AOT/Internal/Add.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Internal/Add.inl -------------------------------------------------------------------------------- /RTCLI.AOT/Internal/Box.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Internal/Box.inl -------------------------------------------------------------------------------- /RTCLI.AOT/Internal/Cgt.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Internal/Cgt.inl -------------------------------------------------------------------------------- /RTCLI.AOT/Internal/Managed.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Internal/Managed.inl -------------------------------------------------------------------------------- /RTCLI.AOT/Internal/Nop.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Internal/Nop.inl -------------------------------------------------------------------------------- /RTCLI.AOT/Internal/Object.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Internal/Object.inl -------------------------------------------------------------------------------- /RTCLI.AOT/Internal/Sub.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Internal/Sub.inl -------------------------------------------------------------------------------- /RTCLI.AOT/Internal/ValueType.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Internal/ValueType.inl -------------------------------------------------------------------------------- /RTCLI.AOT/Nullable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Nullable.h -------------------------------------------------------------------------------- /RTCLI.AOT/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Object.h -------------------------------------------------------------------------------- /RTCLI.AOT/RTCLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/RTCLI.cpp -------------------------------------------------------------------------------- /RTCLI.AOT/Runtime/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Runtime/Console.cpp -------------------------------------------------------------------------------- /RTCLI.AOT/Runtime/Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Runtime/Runtime.cpp -------------------------------------------------------------------------------- /RTCLI.AOT/Single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/Single.h -------------------------------------------------------------------------------- /RTCLI.AOT/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/String.h -------------------------------------------------------------------------------- /RTCLI.AOT/System.Private.CoreLib/System.Private.CoreLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/System.Private.CoreLib/System.Private.CoreLib.csproj -------------------------------------------------------------------------------- /RTCLI.AOT/System.Private.CoreLib/System.Private.CoreLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/System.Private.CoreLib/System.Private.CoreLib.sln -------------------------------------------------------------------------------- /RTCLI.AOT/ValueType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.AOT/ValueType.h -------------------------------------------------------------------------------- /RTCLI.VM/System.Private.CoreLib/System.Private.CoreLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.VM/System.Private.CoreLib/System.Private.CoreLib.csproj -------------------------------------------------------------------------------- /RTCLI.VM/System.Private.CoreLib/System.Private.CoreLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI.VM/System.Private.CoreLib/System.Private.CoreLib.sln -------------------------------------------------------------------------------- /RTCLI/Base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI/Base.hpp -------------------------------------------------------------------------------- /RTCLI/CIL/Internal/Code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI/CIL/Internal/Code.h -------------------------------------------------------------------------------- /RTCLI/CIL/Internal/StackBehaviour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI/CIL/Internal/StackBehaviour.h -------------------------------------------------------------------------------- /RTCLI/CIL/OpCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI/CIL/OpCodes.h -------------------------------------------------------------------------------- /RTCLI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI/CMakeLists.txt -------------------------------------------------------------------------------- /RTCLI/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI/Config.hpp -------------------------------------------------------------------------------- /RTCLI/PIL.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI/PIL.hpp -------------------------------------------------------------------------------- /RTCLI/RTCLI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI/RTCLI.hpp -------------------------------------------------------------------------------- /RTCLI/Source/CIL/CIL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI/Source/CIL/CIL.cpp -------------------------------------------------------------------------------- /RTCLI/Traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLI/Traits.hpp -------------------------------------------------------------------------------- /RTCLIDefault/CoreDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLIDefault/CoreDefault.cpp -------------------------------------------------------------------------------- /RTCLIDefault/CoreDefault.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLIDefault/CoreDefault.hpp -------------------------------------------------------------------------------- /RTCLIDefault/ILDefault.cpp: -------------------------------------------------------------------------------- 1 | #define DLL_IMPLEMENTATION 2 | #include 3 | 4 | -------------------------------------------------------------------------------- /RTCLIDefault/RTCLIDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLIDefault/RTCLIDefault.cpp -------------------------------------------------------------------------------- /RTCLIDefault/RTCLIDefaultConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/RTCLIDefault/RTCLIDefaultConfig.cmake.in -------------------------------------------------------------------------------- /Test/CIL/CILTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/Test/CIL/CILTest.cpp -------------------------------------------------------------------------------- /Test/CIL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/Test/CIL/CMakeLists.txt -------------------------------------------------------------------------------- /Test/CLICore/CLICoreTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/Test/CLICore/CLICoreTest.cpp -------------------------------------------------------------------------------- /Test/CLICore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/Test/CLICore/CMakeLists.txt -------------------------------------------------------------------------------- /Test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/Test/CMakeLists.txt -------------------------------------------------------------------------------- /Test/Null/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/Test/Null/CMakeLists.txt -------------------------------------------------------------------------------- /Test/Null/NullTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/Test/Null/NullTest.cpp -------------------------------------------------------------------------------- /Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/Test/README.md -------------------------------------------------------------------------------- /Test/String/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/Test/String/CMakeLists.txt -------------------------------------------------------------------------------- /Test/String/StringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/Test/String/StringTest.cpp -------------------------------------------------------------------------------- /gen_vs2017.bat: -------------------------------------------------------------------------------- 1 | cmake -G "Visual Studio 15 2017 Win64" -S ./ -B ./build/ 2 | pause -------------------------------------------------------------------------------- /gen_vs2019.bat: -------------------------------------------------------------------------------- 1 | cmake -G "Visual Studio 16 2019" -S ./ -B ./build/ 2 | pause -------------------------------------------------------------------------------- /gen_xcode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/gen_xcode.sh -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/install.bat -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/generators/EventSourceGenerator.Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/generators/EventSourceGenerator.Emitter.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/generators/EventSourceGenerator.Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/generators/EventSourceGenerator.Parser.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/generators/EventSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/generators/EventSourceGenerator.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/ILLink/ILLink.Descriptors.Shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/ILLink/ILLink.Descriptors.Shared.xml -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/ILLink/ILLink.LinkAttributes.Shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/ILLink/ILLink.LinkAttributes.Shared.xml -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/ILLink/ILLink.Substitutions.32bit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/ILLink/ILLink.Substitutions.32bit.xml -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/ILLink/ILLink.Substitutions.64bit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/ILLink/ILLink.Substitutions.64bit.xml -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/ILLink/ILLink.Substitutions.OSX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/ILLink/ILLink.Substitutions.OSX.xml -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/ILLink/ILLink.Substitutions.Shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/ILLink/ILLink.Substitutions.Shared.xml -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/ILLink/ILLink.Suppressions.Shared.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/ILLink/ILLink.Suppressions.Shared.xml -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/ILLink/ILLinkTrim_LibraryBuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/ILLink/ILLinkTrim_LibraryBuild.xml -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/Internal/AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/Internal/AssemblyAttributes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/Internal/Console.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/Internal/Console.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/Internal/Console.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/Internal/Console.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/Internal/Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/Internal/Console.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/Internal/IO/File.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/Internal/IO/File.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/Internal/IO/File.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/Internal/IO/File.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/Internal/IO/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/Internal/IO/File.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/Internal/Padding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/Internal/Padding.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/Internal/Win32/RegistryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/Internal/Win32/RegistryKey.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/README.md -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/Resources/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/Resources/Strings.resx -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.projitems -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System.Private.CoreLib.Shared.shproj -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AccessViolationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AccessViolationException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Action.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Activator.RuntimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Activator.RuntimeType.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Activator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Activator.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AggregateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AggregateException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AppContext.AnyOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AppContext.AnyOS.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AppContext.Browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AppContext.Browser.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AppContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AppContext.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AppContextConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AppContextConfigHelper.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AppDomain.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AppDomain.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AppDomain.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AppDomain.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AppDomain.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AppDomainSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AppDomainSetup.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AppDomainUnloadedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AppDomainUnloadedException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ApplicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ApplicationException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ApplicationId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ApplicationId.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ArgumentException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ArgumentNullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ArgumentNullException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ArgumentOutOfRangeException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ArithmeticException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ArithmeticException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Array.Enumerators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Array.Enumerators.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Array.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ArraySegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ArraySegment.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ArrayTypeMismatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ArrayTypeMismatchException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AssemblyLoadEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AssemblyLoadEventArgs.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AssemblyLoadEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AssemblyLoadEventHandler.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AsyncCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AsyncCallback.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Attribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AttributeTargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AttributeTargets.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/AttributeUsageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/AttributeUsageAttribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/BadImageFormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/BadImageFormatException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/BitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/BitConverter.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Boolean.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffer.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffer.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffer.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffer.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/ArrayPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/ArrayPool.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/ArrayPoolEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/ArrayPoolEventSource.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/Binary/Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/Binary/Reader.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/Binary/ReaderBigEndian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/Binary/ReaderBigEndian.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/Binary/WriterBigEndian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/Binary/WriterBigEndian.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/ConfigurableArrayPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/ConfigurableArrayPool.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/IMemoryOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/IMemoryOwner.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/IPinnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/IPinnable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/MemoryHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/MemoryHandle.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/MemoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/MemoryManager.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/OperationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/OperationStatus.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/StandardFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/StandardFormat.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/Text/Utf8Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/Text/Utf8Constants.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Buffers/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Buffers/Utilities.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ByReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ByReference.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Byte.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/CLSCompliantAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/CLSCompliantAttribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/CannotUnloadAppDomainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/CannotUnloadAppDomainException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Char.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/CharEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/CharEnumerator.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/ArrayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/ArrayList.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Comparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Comparer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/CompatibleComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/CompatibleComparer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/DictionaryEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/DictionaryEntry.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/Comparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/Comparer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/Dictionary.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/HashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/HashSet.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/ICollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/ICollection.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/IComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/IComparer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/IDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/IDictionary.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/IEnumerable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/IEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/IEnumerator.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/IList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/IList.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/IReadOnlySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/IReadOnlySet.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/ISet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/ISet.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/KeyValuePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/KeyValuePair.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Generic/List.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/HashHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/HashHelpers.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/Hashtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/Hashtable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/ICollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/ICollection.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/IComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/IComparer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/IDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/IDictionary.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/IEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/IEnumerable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/IEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/IEnumerator.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/IEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/IEqualityComparer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/IHashCodeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/IHashCodeProvider.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/IList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/IList.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/IStructuralEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/IStructuralEquatable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Collections/KeyValuePairs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Collections/KeyValuePairs.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Context.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Convert.Base64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Convert.Base64.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Convert.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/CoreLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/CoreLib.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/CurrentSystemTimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/CurrentSystemTimeZone.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DBNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DBNull.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DataMisalignedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DataMisalignedException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DateTime.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DateTime.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DateTime.Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DateTime.Win32.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DateTime.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DateTime.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DateTime.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DateTimeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DateTimeKind.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DateTimeOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DateTimeOffset.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DayOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DayOfWeek.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Decimal.DecCalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Decimal.DecCalc.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Decimal.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DefaultBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DefaultBinder.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Delegate.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/ConditionalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/ConditionalAttribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/Contracts/Contracts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/Contracts/Contracts.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/Debug.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/DebugProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/DebugProvider.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/StackFrame.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/StackTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/StackTrace.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/Stopwatch.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/Stopwatch.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/Stopwatch.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/Stopwatch.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/Stopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/Stopwatch.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/EventPipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/EventPipe.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/Winmeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Diagnostics/Tracing/Winmeta.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DivideByZeroException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DivideByZeroException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DllNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DllNotFoundException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Double.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/DuplicateWaitObjectException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/DuplicateWaitObjectException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Empty.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/EntryPointNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/EntryPointNotFoundException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Enum.EnumInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Enum.EnumInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Enum.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.Browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.Browser.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.FreeBSD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.FreeBSD.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.Linux.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.Linux.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.NoRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.NoRegistry.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.OSVersion.OSX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.OSVersion.OSX.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.OSVersion.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.OSVersion.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.OSX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.OSX.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.SpecialFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.SpecialFolder.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.SunOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.SunOS.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.UnixOrBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.UnixOrBrowser.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.Variables.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.Variables.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.Win32.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Environment.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/EnvironmentVariableTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/EnvironmentVariableTarget.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/EventArgs.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/EventHandler.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Exception.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ExecutionEngineException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ExecutionEngineException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/FieldAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/FieldAccessException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/FlagsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/FlagsAttribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/FormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/FormatException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/FormattableString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/FormattableString.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Function.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/GCMemoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/GCMemoryInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Gen2GcCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Gen2GcCallback.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/Calendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/Calendar.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CalendarData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CalendarData.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CharUnicodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CharUnicodeInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CompareInfo.Icu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CompareInfo.Icu.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CompareInfo.Nls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CompareInfo.Nls.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CompareInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CompareInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CompareOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CompareOptions.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CultureData.Icu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CultureData.Icu.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CultureData.Nls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CultureData.Nls.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CultureData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CultureData.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CultureInfo.Icu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CultureInfo.Icu.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CultureInfo.Nls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CultureInfo.Nls.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CultureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CultureInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/CultureTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/CultureTypes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/DateTimeFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/DateTimeFormat.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/DateTimeParse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/DateTimeParse.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/DateTimeStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/DateTimeStyles.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/DaylightTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/DaylightTime.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/DigitShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/DigitShapes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/HebrewCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/HebrewCalendar.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/HebrewNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/HebrewNumber.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/HijriCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/HijriCalendar.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/ISOWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/ISOWeek.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/IcuLocaleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/IcuLocaleData.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/IdnMapping.Icu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/IdnMapping.Icu.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/IdnMapping.Nls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/IdnMapping.Nls.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/IdnMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/IdnMapping.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/JulianCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/JulianCalendar.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/KoreanCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/KoreanCalendar.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/Normalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/Normalization.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/NumberStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/NumberStyles.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/Ordinal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/Ordinal.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/PersianCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/PersianCalendar.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/RegionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/RegionInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/SortKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/SortKey.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/SortVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/SortVersion.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/StringInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/StringInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/TaiwanCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/TaiwanCalendar.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/TextInfo.Icu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/TextInfo.Icu.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/TextInfo.Nls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/TextInfo.Nls.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/TextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/TextInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/TimeSpanFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/TimeSpanFormat.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/TimeSpanParse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/TimeSpanParse.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/TimeSpanStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/TimeSpanStyles.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Globalization/UnicodeCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Globalization/UnicodeCategory.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Guid.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Guid.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Guid.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Guid.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Guid.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Half.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Half.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/HashCode.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IAsyncDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IAsyncDisposable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IAsyncResult.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ICloneable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ICloneable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IComparable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IComparable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IConvertible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IConvertible.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ICustomFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ICustomFormatter.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IDisposable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IEquatable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IFormatProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IFormatProvider.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IFormattable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IFormattable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/BinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/BinaryReader.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/BinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/BinaryWriter.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/BufferedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/BufferedStream.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/DerivedFileStreamStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/DerivedFileStreamStrategy.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/DirectoryNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/DirectoryNotFoundException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/DriveInfoInternal.Browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/DriveInfoInternal.Browser.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/DriveInfoInternal.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/DriveInfoInternal.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/DriveInfoInternal.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/DriveInfoInternal.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/EncodingCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/EncodingCache.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/EndOfStreamException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/EndOfStreamException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/Error.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileAccess.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileAttributes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileLoadException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileMode.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileNotFoundException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileOptions.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileShare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileShare.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileStream.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileStreamHelpers.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileStreamHelpers.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileStreamHelpers.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileStreamHelpers.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/FileStreamStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/FileStreamStrategy.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/HandleInheritability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/HandleInheritability.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/IOException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/IOException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/InvalidDataException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/InvalidDataException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/LegacyFileStreamStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/LegacyFileStreamStrategy.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/MemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/MemoryStream.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/Path.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/Path.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/Path.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/Path.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/Path.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/PathHelper.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/PathHelper.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/PathInternal.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/PathInternal.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/PathInternal.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/PathInternal.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/PathInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/PathInternal.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/PathTooLongException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/PathTooLongException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/PersistedFiles.Browser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/PersistedFiles.Browser.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/PersistedFiles.Names.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/PersistedFiles.Names.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/PersistedFiles.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/PersistedFiles.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/PinnedBufferMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/PinnedBufferMemoryStream.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/SeekOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/SeekOrigin.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/Stream.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/StreamReader.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/StreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/StreamWriter.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/StringReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/StringReader.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/StringWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/StringWriter.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/TextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/TextReader.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/TextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/TextWriter.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/UnmanagedMemoryAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/UnmanagedMemoryAccessor.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IO/UnmanagedMemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IO/UnmanagedMemoryStream.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IObservable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IObservable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IObserver.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IProgress.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ISpanFormattable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ISpanFormattable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Index.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IndexOutOfRangeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IndexOutOfRangeException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/InsufficientMemoryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/InsufficientMemoryException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Int16.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Int32.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Int64.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/IntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/IntPtr.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/InvalidCastException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/InvalidCastException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/InvalidOperationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/InvalidOperationException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/InvalidProgramException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/InvalidProgramException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/InvalidTimeZoneException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/InvalidTimeZoneException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Lazy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Lazy.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/LazyOfTTMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/LazyOfTTMetadata.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/LoaderOptimization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/LoaderOptimization.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/LoaderOptimizationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/LoaderOptimizationAttribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/LocalAppContextSwitches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/LocalAppContextSwitches.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/LocalDataStoreSlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/LocalDataStoreSlot.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MarshalByRefObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MarshalByRefObject.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Marvin.OrdinalIgnoreCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Marvin.OrdinalIgnoreCase.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Marvin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Marvin.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Math.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MathF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MathF.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MemberAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MemberAccessException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Memory.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MemoryDebugView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MemoryDebugView.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MemoryExtensions.Trim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MemoryExtensions.Trim.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MemoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MemoryExtensions.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MethodAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MethodAccessException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MidpointRounding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MidpointRounding.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MissingFieldException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MissingFieldException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MissingMemberException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MissingMemberException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/MissingMethodException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/MissingMethodException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Net/WebUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Net/WebUtility.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/NonSerializedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/NonSerializedAttribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/NotFiniteNumberException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/NotFiniteNumberException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/NotImplementedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/NotImplementedException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/NotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/NotSupportedException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/NullReferenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/NullReferenceException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Nullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Nullable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Number.BigInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Number.BigInteger.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Number.DiyFp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Number.DiyFp.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Number.Dragon4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Number.Dragon4.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Number.Formatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Number.Formatting.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Number.Grisu3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Number.Grisu3.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Number.NumberBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Number.NumberBuffer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Number.Parsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Number.Parsing.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/BitOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/BitOperations.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Hashing/HashHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Hashing/HashHelpers.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Matrix3x2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Matrix3x2.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Matrix4x4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Matrix4x4.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Plane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Plane.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Quaternion.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Register.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Vector.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Vector2.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Vector3.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Vector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Vector4.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/VectorMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/VectorMath.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Numerics/Vector_1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Numerics/Vector_1.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Object.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ObjectDisposedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ObjectDisposedException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ObsoleteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ObsoleteAttribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/OperatingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/OperatingSystem.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/OperationCanceledException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/OperationCanceledException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/OutOfMemoryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/OutOfMemoryException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/OverflowException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/OverflowException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ParamArrayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ParamArrayAttribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ParamsArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ParamsArray.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ParseNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ParseNumbers.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/PasteArguments.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/PasteArguments.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/PasteArguments.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/PasteArguments.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/PasteArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/PasteArguments.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/PlatformID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/PlatformID.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/PlatformNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/PlatformNotSupportedException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Progress.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Random.ImplBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Random.ImplBase.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Random.LegacyImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Random.LegacyImpl.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Random.Xoshiro128StarStarImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Random.Xoshiro128StarStarImpl.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Random.Xoshiro256StarStarImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Random.Xoshiro256StarStarImpl.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Random.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Range.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/RankException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/RankException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ReadOnlyMemory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ReadOnlyMemory.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ReadOnlySpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ReadOnlySpan.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Assembly.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/AssemblyName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/AssemblyName.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/AssemblyNameFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/AssemblyNameFlags.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/AssemblyNameProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/AssemblyNameProxy.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Binder.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/BindingFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/BindingFlags.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/CallingConventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/CallingConventions.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/ConstructorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/ConstructorInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/CorElementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/CorElementType.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Emit/EmptyCAHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Emit/EmptyCAHolder.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Emit/FlowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Emit/FlowControl.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Emit/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Emit/Label.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Emit/OpCodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Emit/OpCodeType.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Emit/OpCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Emit/OpCodes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Emit/Opcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Emit/Opcode.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Emit/OperandType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Emit/OperandType.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Emit/PEFileKinds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Emit/PEFileKinds.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Emit/PackingSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Emit/PackingSize.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/EventAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/EventAttributes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/EventInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/FieldAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/FieldAttributes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/FieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/FieldInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/IReflect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/IReflect.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/IReflectableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/IReflectableType.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/ImageFileMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/ImageFileMachine.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/InterfaceMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/InterfaceMapping.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/LocalVariableInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/LocalVariableInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/MemberFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/MemberFilter.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/MemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/MemberInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/MemberTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/MemberTypes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/MethodAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/MethodAttributes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/MethodBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/MethodBase.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/MethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/MethodBody.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/MethodInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Missing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Missing.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Module.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/ParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/ParameterInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/ParameterModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/ParameterModifier.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/Pointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/Pointer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/PropertyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/PropertyAttributes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/PropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/PropertyInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/ReflectionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/ReflectionContext.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/ResourceAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/ResourceAttributes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/ResourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/ResourceLocation.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/RuntimeMethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/RuntimeMethodBody.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/SignatureArrayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/SignatureArrayType.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/SignatureByRefType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/SignatureByRefType.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/SignatureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/SignatureType.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/StrongNameKeyPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/StrongNameKeyPair.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/TargetException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/TargetException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/TypeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/TypeAttributes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/TypeDelegator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/TypeDelegator.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/TypeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/TypeFilter.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Reflection/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Reflection/TypeInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ResolveEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ResolveEventArgs.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ResolveEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ResolveEventHandler.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Resources/IResourceGroveler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Resources/IResourceGroveler.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Resources/IResourceReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Resources/IResourceReader.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Resources/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Resources/ResourceManager.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.Core.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Resources/ResourceReader.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Resources/ResourceSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Resources/ResourceSet.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Resources/ResourceTypeCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Resources/ResourceTypeCode.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Resources/RuntimeResourceSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Resources/RuntimeResourceSet.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/GCSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/GCSettings.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/CLong.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/InteropServices/CLong.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Aes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Aes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Crc32.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Dp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Dp.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Rdm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Rdm.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Sha1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Sha1.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Sha256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Arm/Sha256.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector128.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector256.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64_1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/Vector64_1.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Aes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Avx2.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi1.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Bmi2.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Enums.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Fma.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Lzcnt.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Popcnt.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse2.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse3.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse41.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Sse42.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Intrinsics/X86/Ssse3.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/MemoryFailPoint.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/MemoryFailPoint.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/MemoryFailPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/MemoryFailPoint.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/ProfileOptimization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/ProfileOptimization.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Runtime/Remoting/ObjectHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Runtime/Remoting/ObjectHandle.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/RuntimeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/RuntimeType.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/SByte.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/SR.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/IPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/IPermission.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/ISecurityEncodable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/ISecurityEncodable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/IStackWalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/IStackWalk.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/PermissionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/PermissionSet.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/Principal/IIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/Principal/IIdentity.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/Principal/IPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/Principal/IPrincipal.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/SecureString.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/SecureString.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/SecureString.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/SecureString.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/SecureString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/SecureString.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/SecurityElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/SecurityElement.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/SecurityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/SecurityException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Security/SecurityRuleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Security/SecurityRuleSet.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/SerializableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/SerializableAttribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Single.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Span.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Span.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/SpanDebugView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/SpanDebugView.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/SpanHelpers.BinarySearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/SpanHelpers.BinarySearch.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/SpanHelpers.Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/SpanHelpers.Byte.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/SpanHelpers.Char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/SpanHelpers.Char.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/SpanHelpers.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/SpanHelpers.T.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/SpanHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/SpanHelpers.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/StackOverflowException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/StackOverflowException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/String.Comparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/String.Comparison.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/String.Manipulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/String.Manipulation.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/String.Searching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/String.Searching.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/String.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/StringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/StringComparer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/StringComparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/StringComparison.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/StringNormalizationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/StringNormalizationExtensions.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/StringSplitOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/StringSplitOptions.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/SystemException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/SystemException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/ASCIIEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/ASCIIEncoding.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/ASCIIUtility.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/ASCIIUtility.Helpers.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/ASCIIUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/ASCIIUtility.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/CodePageDataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/CodePageDataItem.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Decoder.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/DecoderExceptionFallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/DecoderExceptionFallback.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/DecoderFallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/DecoderFallback.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/DecoderNLS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/DecoderNLS.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Encoder.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/EncoderExceptionFallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/EncoderExceptionFallback.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/EncoderFallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/EncoderFallback.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/EncoderNLS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/EncoderNLS.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Encoding.Internal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Encoding.Internal.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Encoding.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/EncodingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/EncodingData.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/EncodingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/EncodingInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/EncodingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/EncodingProvider.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/EncodingTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/EncodingTable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Latin1Encoding.Sealed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Latin1Encoding.Sealed.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Latin1Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Latin1Encoding.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Latin1Utility.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Latin1Utility.Helpers.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Latin1Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Latin1Utility.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/NormalizationForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/NormalizationForm.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Rune.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Rune.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/SpanRuneEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/SpanRuneEnumerator.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/StringBuilder.Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/StringBuilder.Debug.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/StringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/StringBuilder.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/StringRuneEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/StringRuneEnumerator.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/TranscodingStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/TranscodingStream.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/TrimType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/TrimType.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/UTF32Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/UTF32Encoding.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/UTF7Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/UTF7Encoding.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/UTF8Encoding.Sealed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/UTF8Encoding.Sealed.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/UTF8Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/UTF8Encoding.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Unicode/Utf16Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Unicode/Utf16Utility.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Unicode/Utf8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Unicode/Utf8.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/Unicode/Utf8Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/Unicode/Utf8Utility.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/UnicodeDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/UnicodeDebug.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/UnicodeEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/UnicodeEncoding.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Text/UnicodeUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Text/UnicodeUtility.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ThreadAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ThreadAttributes.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ThreadStaticAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ThreadStaticAttribute.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/ApartmentState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/ApartmentState.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/AsyncLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/AsyncLocal.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/AutoResetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/AutoResetEvent.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/CancellationToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/CancellationToken.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/CompressedStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/CompressedStack.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/EventResetMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/EventResetMode.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/EventWaitHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/EventWaitHandle.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/ExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/ExecutionContext.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/IThreadPoolWorkItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/IThreadPoolWorkItem.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Interlocked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Interlocked.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/LazyInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/LazyInitializer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/LowLevelLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/LowLevelLock.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/LowLevelMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/LowLevelMonitor.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/LowLevelSpinWaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/LowLevelSpinWaiter.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/ManualResetEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/ManualResetEvent.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Monitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Monitor.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Mutex.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Mutex.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Mutex.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Mutex.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Mutex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Mutex.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/NativeOverlapped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/NativeOverlapped.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/PortableThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/PortableThreadPool.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Semaphore.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Semaphore.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Semaphore.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Semaphore.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Semaphore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Semaphore.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/SemaphoreSlim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/SemaphoreSlim.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/SendOrPostCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/SendOrPostCallback.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/SpinLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/SpinLock.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/SpinWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/SpinWait.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/StackCrawlMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/StackCrawlMark.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Tasks/Future.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Tasks/Future.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Tasks/FutureFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Tasks/FutureFactory.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Tasks/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Tasks/Task.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Tasks/TaskCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Tasks/TaskCache.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Tasks/TaskFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Tasks/TaskFactory.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Tasks/TaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Tasks/TaskScheduler.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Tasks/ValueTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Tasks/ValueTask.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Thread.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/ThreadLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/ThreadLocal.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/ThreadPool.Portable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/ThreadPool.Portable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/ThreadPoolWorkQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/ThreadPoolWorkQueue.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/ThreadPriority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/ThreadPriority.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/ThreadStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/ThreadStart.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/ThreadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/ThreadState.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Timeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Timeout.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/TimeoutHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/TimeoutHelper.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Timer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/TimerQueue.Portable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/TimerQueue.Portable.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/TimerQueue.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/TimerQueue.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/TimerQueue.Windows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/TimerQueue.Windows.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/Volatile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/Volatile.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/WaitHandle.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/WaitHandle.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/WaitHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/WaitHandle.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Threading/WaitSubsystem.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Threading/WaitSubsystem.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ThrowHelper.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeSpan.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeZone.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeZoneInfo.AdjustmentRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeZoneInfo.AdjustmentRule.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeZoneInfo.GetDisplayName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeZoneInfo.GetDisplayName.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeZoneInfo.StringSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeZoneInfo.StringSerializer.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeZoneInfo.TransitionTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeZoneInfo.TransitionTime.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeZoneInfo.Unix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeZoneInfo.Unix.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeZoneInfo.Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeZoneInfo.Win32.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeZoneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeZoneInfo.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeZoneNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeZoneNotFoundException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TimeoutException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Tuple.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TupleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TupleExtensions.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TupleSlim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TupleSlim.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Type.Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Type.Enum.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Type.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Type.Helpers.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Type.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TypeAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TypeAccessException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TypeCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TypeCode.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TypeInitializationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TypeInitializationException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TypeLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TypeLoadException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/TypeUnloadedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/TypeUnloadedException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/UInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/UInt16.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/UInt32.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/UInt64.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/UIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/UIntPtr.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/UnauthorizedAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/UnauthorizedAccessException.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/UnhandledExceptionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/UnhandledExceptionEventArgs.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/UnitySerializationHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/UnitySerializationHolder.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Utf8Extensions.CoreLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Utf8Extensions.CoreLib.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Utf8Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Utf8Extensions.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/ValueTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/ValueTuple.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Version.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/Void.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/Void.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/WeakReference.T.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/WeakReference.T.cs -------------------------------------------------------------------------------- /libraries/System.Private.CoreLib/src/System/WeakReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/libraries/System.Private.CoreLib/src/System/WeakReference.cs -------------------------------------------------------------------------------- /res/RTCLI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/res/RTCLI.png -------------------------------------------------------------------------------- /res/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-RTCLI/RTCLI.Runtime/HEAD/res/architecture.png --------------------------------------------------------------------------------