├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── KGySoft.CoreLibraries.PerformanceTest ├── GlobalSuppressions.cs ├── IteratorPerformanceTest.cs ├── KGySoft.CoreLibraries.PerformanceTest.csproj ├── KGySoft.CoreLibraries.PerformanceTest.csproj.DotSettings ├── ParameterizedPerformanceTest .cs ├── PerformanceTest.cs ├── PerformanceTests │ ├── Collections │ │ ├── Array2DPerformanceTest.cs │ │ ├── Array3DPerformanceTest.cs │ │ ├── ArraySectionPerformanceTest.cs │ │ ├── CachePerformanceTest.cs │ │ ├── CircularListPerformanceTest.cs │ │ ├── CircularSortedListPerformanceTest.cs │ │ ├── ObjectModel │ │ │ └── FastLookupCollectionPerformanceTest.cs │ │ ├── StringKeyedDictionaryPerformanceTest.cs │ │ ├── ThreadSafeCachePerformanceTest.cs │ │ └── ThreadSafeDictionaryPerformanceTest.cs │ ├── ComponentModel │ │ ├── FastBindingListPerformanceTest.cs │ │ └── SortableBindingListPerformanceTest.cs │ ├── CoreLibraries │ │ ├── EnumComparerPerformanceTest.cs │ │ ├── EnumPerformanceTest.cs │ │ ├── FastRandomPerformanceTest.cs │ │ ├── StringSegmentPerformanceTest.cs │ │ └── ThreadSafeRandomPerformanceTest.cs │ ├── Diagnostics │ │ └── ProfilerPerformanceTest.cs │ ├── Reflection │ │ └── ReflectorPerformanceTest.cs │ ├── Resources │ │ └── ResXResourceManagerPerformanceTest.cs │ ├── Serialization │ │ ├── BinarySerializerPerformanceTest.cs │ │ └── XmlSerializerPerformanceTest.cs │ ├── Threading │ │ └── ParallelHelperPerformanceTest.cs │ └── ThrowHelperTest.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RandomizedPerformanceTest.cs ├── Resources │ └── TestResourceResX.resx └── _Attributes │ ├── TestCaseAttribute.cs │ ├── TestCaseGenericAttribute.cs │ ├── TestCaseSourceAttribute.cs │ └── TestCaseSourceGenericAttribute.cs ├── KGySoft.CoreLibraries.UnitTest ├── GlobalInitialization.cs ├── GlobalSuppressions.cs ├── KGySoft.CoreLibraries.UnitTest.csproj ├── KGySoft.CoreLibraries.UnitTest.csproj.DotSettings ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── TestBinFile.bin │ ├── TestCompiledResource.en-US.resx │ ├── TestCompiledResource.en.resx │ ├── TestCompiledResource.resx │ ├── TestIcon.ico │ ├── TestImage.hu.png │ ├── TestImage.png │ ├── TestImageInv.png │ ├── TestRes.resx │ ├── TestResourceResX.en-US.resx │ ├── TestResourceResX.en.resx │ ├── TestResourceResX.resx │ ├── TestSound.wav │ └── TestTextFile.txt ├── System.Runtime.CompilerServices │ └── IsExternalInit.cs ├── TestBase.cs ├── UnitTests │ ├── Collections │ │ ├── AllowNullDictionaryTest.cs │ │ ├── Array2DTest.cs │ │ ├── Array3DTest.cs │ │ ├── ArraySectionTest.cs │ │ ├── CacheTest.cs │ │ ├── CastArrayTest.cs │ │ ├── CircularListTest.cs │ │ ├── CircularSortedListTest.cs │ │ ├── ObjectModel │ │ │ └── FastLookupCollectionTest.cs │ │ ├── StringKeyedDictionaryTest.cs │ │ ├── ThreadSafeCacheTest.cs │ │ ├── ThreadSafeDictionaryTest.cs │ │ └── ThreadSafeHashSetTest.cs │ ├── ComponentModel │ │ ├── Collections │ │ │ ├── FastBindingListTest.cs │ │ │ ├── ObservableBindingListTest.cs │ │ │ └── SortableBindingListTest.cs │ │ ├── CommandsTest.cs │ │ ├── ObservableObjectTest.cs │ │ ├── PersistableObjectTest.cs │ │ ├── TypeConvertersTest.cs │ │ ├── UndoableObjectTest.cs │ │ └── ValidatingObjectTest.cs │ ├── CoreLibraries │ │ ├── EnumComparerTest.cs │ │ ├── EnumTest.cs │ │ ├── Extensions │ │ │ ├── ByteArrayExtensionsTest.cs │ │ │ ├── DecimalExtensionsTest.cs │ │ │ ├── DictionaryExtensionsTest.cs │ │ │ ├── DoubleExtensionsTest.cs │ │ │ ├── EnumerableExtensionsTest.cs │ │ │ ├── FloatExtensionsTest.cs │ │ │ ├── ObjectExtensionsTest.cs │ │ │ ├── RandomExtensionsTest.cs │ │ │ ├── SpanExtensionsTest.cs │ │ │ ├── StreamExtensionsTest.cs │ │ │ ├── StringExtensionsTest.cs │ │ │ ├── StringSegmentExtensionsTest.cs │ │ │ └── TypeExtensionsTest.cs │ │ ├── FastRandomTest.cs │ │ ├── FilesTest.cs │ │ └── StringSegmentTest.cs │ ├── Diagnostics │ │ └── ProfilerTest.cs │ ├── Reflection │ │ ├── ReflectorTest.cs │ │ └── TypeResolverTest.cs │ ├── ResTests.cs │ ├── Resources │ │ ├── DynamicResourceManagerTest.cs │ │ ├── HybridResourceManagerTest.cs │ │ ├── ResXDataNodeTest.cs │ │ ├── ResXResourceManagerTest.cs │ │ ├── ResXResourceReaderTest.cs │ │ ├── ResXResourceSetTest.cs │ │ └── ResXResourceWriterTest.cs │ ├── Serialization │ │ ├── Binary │ │ │ ├── BinarySerializerTest.AdditionalMembers.cs │ │ │ ├── BinarySerializerTest.TestData.cs │ │ │ ├── BinarySerializerTest.Tests.cs │ │ │ ├── CustomSerializerSurrogateSelectorTest.cs │ │ │ └── ForwardedTypesSerializationBinderTest.cs │ │ └── Xml │ │ │ ├── XmlSerializerTest.AdditionalMembers.cs │ │ │ ├── XmlSerializerTest.TestData.cs │ │ │ └── XmlSerializerTest.Tests.cs │ └── Threading │ │ ├── AsyncHelperTest.cs │ │ ├── ParallelHelperTest.cs │ │ └── TestProgress.cs ├── _Attributes │ ├── TestCaseAttribute.cs │ ├── TestCaseGenericAttribute.cs │ ├── TestCaseSourceAttribute.cs │ └── TestCaseSourceGenericAttribute.cs ├── _Classes │ ├── BitmapConverter.cs │ ├── IconConverter.cs │ ├── TestSerializationBinder.cs │ └── TestTypeResolver.cs └── _Extensions │ └── Extensions.cs ├── KGySoft.CoreLibraries.sln ├── KGySoft.CoreLibraries.sln.DotSettings ├── KGySoft.CoreLibraries ├── .nuspec │ ├── Icon64.png │ ├── KGySoft.CoreLibraries.nuspec │ ├── pack.bat │ ├── readme.md │ └── readme.txt ├── Annotations │ └── Annotations.cs ├── Argument.cs ├── Collections │ ├── AllowNullDictionary.cs │ ├── Array2D.cs │ ├── Array3D.cs │ ├── ArraySection.cs │ ├── ArraySectionEnumerator.cs │ ├── Cache.cs │ ├── CastArray.cs │ ├── CastArray2D.cs │ ├── CastArray3D.cs │ ├── CastArrayEnumerator.cs │ ├── CircularList.BinarySearchHelper.cs │ ├── CircularList.ComparableBinarySearchHelper.cs │ ├── CircularList.cs │ ├── CircularSortedList.cs │ ├── ConditionallyStoringLockFreeCache.cs │ ├── ExpiringValuesCache.cs │ ├── HashHelper.cs │ ├── ListSegment.cs │ ├── LockFreeCache.GrowOnlyDictionary.cs │ ├── LockFreeCache.ReadOnlyDictionary.cs │ ├── LockFreeCache.cs │ ├── LockFreeCacheOptions.cs │ ├── LockingCacheOptions.cs │ ├── LockingCollection.cs │ ├── LockingDictionary.cs │ ├── LockingList.cs │ ├── ObjectModel │ │ ├── FastLookupCollection.cs │ │ ├── VirtualCollection.cs │ │ └── _doc │ │ │ └── NamespaceDoc.cs │ ├── StringKeyedDictionary.cs │ ├── ThreadSafeCacheFactory.cs │ ├── ThreadSafeCacheOptionsBase.cs │ ├── ThreadSafeDictionary.FixedSizeStorage.cs │ ├── ThreadSafeDictionary.PrivateTypes.cs │ ├── ThreadSafeDictionary.TempStorage.cs │ ├── ThreadSafeDictionary.cs │ ├── ThreadSafeHashSet.FixedSizeStorage.cs │ ├── ThreadSafeHashSet.TempStorage.cs │ ├── ThreadSafeHashSet.cs │ ├── _Delegates │ │ └── ConditionallyStoringItemLoader.cs │ ├── _Enums │ │ ├── CacheBehavior.cs │ │ ├── DictionaryInsertion.cs │ │ └── HashingStrategy.cs │ ├── _Extensions │ │ └── HashingStrategyExtensions.cs │ ├── _Interfaces │ │ ├── ICache.cs │ │ ├── ICacheStatistics.cs │ │ ├── IStringKeyedDictionary.cs │ │ ├── IStringKeyedReadonlyDictionary.cs │ │ ├── ISupportsRangeCollection.cs │ │ ├── ISupportsRangeList.cs │ │ └── IThreadSafeCacheAccessor.cs │ └── _doc │ │ └── NamespaceDoc.cs ├── ComponentModel │ ├── BusinessObjects.cd │ ├── _BusinessObjects │ │ ├── EditableHelper.cs │ │ ├── EditableObjectBase.cs │ │ ├── ModelBase.cs │ │ ├── ObservableObjectBase.cs │ │ ├── PersistableObjectBase.cs │ │ ├── UndoableHelper.cs │ │ ├── UndoableObjectBase.cs │ │ ├── ValidatingObjectBase.cs │ │ ├── ValidationResult.cs │ │ ├── ValidationResultsCollection.cs │ │ ├── _Enums │ │ │ ├── EditableObjectBehavior.cs │ │ │ └── ValidationSeverity.cs │ │ ├── _EventArgs │ │ │ ├── AddingNewEventArgs.cs │ │ │ └── PropertyChangedExtendedEventArgs.cs │ │ ├── _Extensions │ │ │ └── PropertyChangedEventArgsExtensions.cs │ │ └── _Interfaces │ │ │ ├── ICanEdit.cs │ │ │ ├── ICanUndo.cs │ │ │ ├── ICanUndoInternal.cs │ │ │ ├── ICanUndoRedo.cs │ │ │ ├── IPersistableObject.cs │ │ │ └── IValidatingObject.cs │ ├── _Collections │ │ ├── FastBindingList.cs │ │ ├── ItemComparer.cs │ │ ├── ItemGenericComparer.cs │ │ ├── ObservableBindingList.cs │ │ ├── SortableBindingList.cs │ │ └── _Enums │ │ │ └── BindingListDisposeBehavior.cs │ ├── _Command │ │ ├── CommandBinding.cs │ │ ├── CommandBindingsCollection.cs │ │ ├── CommandSource.cs │ │ ├── CommandState.cs │ │ ├── NullStateUpdater.cs │ │ ├── PropertyCommandStateUpdater.cs │ │ ├── SimpleCommand.cs │ │ ├── SimpleCommand`1.cs │ │ ├── SourceAwareCommand`1.cs │ │ ├── SourceAwareCommand`2.cs │ │ ├── SourceAwareTargetedCommand`2.cs │ │ ├── SourceAwareTargetedCommand`3.cs │ │ ├── TargetedCommand`1.cs │ │ ├── TargetedCommand`2.cs │ │ ├── _Enums │ │ │ └── CommandBindingErrorContext.cs │ │ ├── _EventArgs │ │ │ ├── CommandBindingErrorEventArgs.cs │ │ │ └── ExecuteCommandEventArgs.cs │ │ ├── _Extensions │ │ │ └── Command.cs │ │ └── _Interfaces │ │ │ ├── ICommand.cs │ │ │ ├── ICommandBinding.cs │ │ │ ├── ICommandSource.cs │ │ │ ├── ICommandSource`1.cs │ │ │ ├── ICommandState.cs │ │ │ ├── ICommandStateUpdater.cs │ │ │ └── ICommand`1.cs │ ├── _TypeConverters │ │ ├── BinaryTypeConverter.cs │ │ ├── EncodingConverter.cs │ │ ├── FlagsEnumConverter.cs │ │ ├── StringSegmentConverter.cs │ │ └── VersionConverter.cs │ └── __doc │ │ └── NamespaceDoc.cs ├── CoreLibraries │ ├── ComparerHelper.cs │ ├── Enum.Format.cs │ ├── Enum.Parse.cs │ ├── Enum.cs │ ├── EnumComparer.cs │ ├── EnumComparerBuilder.cs │ ├── FastRandom.cs │ ├── Files.cs │ ├── HiResTimer.cs │ ├── MutableString.cs │ ├── MutableStringBuilder.cs │ ├── RangeInfo.cs │ ├── ReferenceEqualityComparer.cs │ ├── ReferenceEqualityComparer`1.cs │ ├── StringSegment.Comparison.cs │ ├── StringSegment.Lookup.cs │ ├── StringSegment.Slicing.cs │ ├── StringSegment.cs │ ├── StringSegmentComparer.cs │ ├── StringSegmentInternal.cs │ ├── ThreadLocal.cs │ ├── ThreadSafeRandom.cs │ ├── TimeHelper.cs │ ├── _Enums │ │ ├── EnumFormattingOptions.cs │ │ └── TypeNameKind.cs │ ├── _EventArgs │ │ ├── EventArgs.cs │ │ └── HiResTimerElapsedEventArgs.cs │ ├── _Extensions │ │ ├── ArrayExtensions.cs │ │ ├── ByteArrayExtensions.cs │ │ ├── CharExtensions.cs │ │ ├── CollectionExtensions.cs │ │ ├── DateTimeExtensions.cs │ │ ├── DecimalExtensions.cs │ │ ├── DelegateExtensions.cs │ │ ├── DictionaryExtensions.cs │ │ ├── DoubleExtensions.cs │ │ ├── EnumExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ ├── EnumeratorExtensions.cs │ │ ├── ExceptionExtensions.cs │ │ ├── FloatExtensions.cs │ │ ├── ListExtensions.cs │ │ ├── ObjectExtensions.ObjectCloner.cs │ │ ├── ObjectExtensions.ObjectConverter.cs │ │ ├── ObjectExtensions.cs │ │ ├── RandomExtensions.CharSet.cs │ │ ├── RandomExtensions.ObjectGenerator.cs │ │ ├── RandomExtensions.RuneInfo.cs │ │ ├── RandomExtensions.WordGenerator.cs │ │ ├── RandomExtensions.cs │ │ ├── SpanExtensions.Parser.cs │ │ ├── SpanExtensions.cs │ │ ├── StreamExtensions.cs │ │ ├── StringExtensions.Parser.cs │ │ ├── StringExtensions.cs │ │ ├── StringSegmentExtensions.cs │ │ ├── TypeExtensions.cs │ │ ├── UInt128Extensions.cs │ │ ├── UInt32Extensions.cs │ │ ├── UInt64Extensions.cs │ │ ├── _Classes │ │ │ └── GenerateObjectSettings.cs │ │ ├── _Delegates │ │ │ ├── Conversion.cs │ │ │ └── ConversionAttempt.cs │ │ └── _Enums │ │ │ ├── FloatScale.cs │ │ │ ├── ObjectInitialization.cs │ │ │ └── StringCreation.cs │ ├── _Structs │ │ ├── Range.cs │ │ ├── StringSegmentSplitOptions.cs │ │ └── TypesKey.cs │ └── _doc │ │ └── NamespaceDoc.cs ├── Debug.cs ├── Diagnostics │ ├── CollectionDebugView.cs │ ├── DictionaryDebugView.cs │ ├── DictionaryKeyCollectionDebugView.cs │ ├── DictionaryValueCollectionDebugView.cs │ ├── MeasureItem.cs │ ├── MeasureOperation.cs │ ├── PerformanceTest.cs │ ├── PerformanceTestBase.cs │ ├── PerformanceTestBase`2.cs │ ├── PerformanceTest`1.cs │ ├── Profiler.cs │ ├── _Interfaces │ │ ├── IMeasureItem.cs │ │ ├── IPerformanceTestResultCollection.cs │ │ ├── ITestCaseRepetition.cs │ │ └── ITestCaseResult.cs │ └── _doc │ │ └── NamespaceDoc.cs ├── EnvironmentHelper.cs ├── GlobalSuppressions.cs ├── Help │ └── Images │ │ ├── ComponentModel_BusinessObjects.png │ │ ├── DynamicResourceManager_ExampleResources.png │ │ ├── NewClassLibrary.png │ │ ├── NewConsoleApp.png │ │ ├── NewResourcesFile.png │ │ ├── ProfilerResults.png │ │ ├── ResourceFileProperties_DynamicResourceManager.png │ │ ├── ResourceFileProperties_HybridResourceManager.png │ │ └── ResourceFileProperties_ResXResourceManager.png ├── IO │ ├── StringStream.cs │ └── UnmanagedMemoryStreamWrapper.cs ├── KGySoft.CoreLibraries.Messages.resx ├── KGySoft.CoreLibraries.csproj ├── KGySoft.CoreLibraries.csproj.DotSettings ├── KGySoft.CoreLibraries.ruleset ├── KGySoft.CoreLibraries.shfbproj ├── LanguageSettings.cs ├── MemoryHelper.cs ├── Module.cs ├── NamespaceDoc.cs ├── Properties │ └── AssemblyInfo.cs ├── PublicResources.cs ├── Reflection │ ├── Accessors.cs │ ├── ActionMethodAccessor.cs │ ├── AssemblyResolver.cs │ ├── CreateInstanceAccessor.cs │ ├── DefaultCreateInstanceAccessor.cs │ ├── FieldAccessor.cs │ ├── FunctionMethodAccessor.cs │ ├── IndexerAccessor.cs │ ├── MemberAccessor.cs │ ├── MethodAccessor.cs │ ├── ParameterizedCreateInstanceAccessor.cs │ ├── PropertyAccessor.cs │ ├── ReflectionException.cs │ ├── Reflector.cs │ ├── Reflector`1.cs │ ├── SimplePropertyAccessor.cs │ ├── TypeResolver.TypeNameResolver.cs │ ├── TypeResolver.cs │ ├── WinApi │ │ ├── ASSEMBLY_INFO.cs │ │ ├── Fusion.cs │ │ └── IAssemblyCache.cs │ ├── _Enums │ │ ├── DynamicMethodOptions.cs │ │ ├── ReflectionWays.cs │ │ ├── ResolveAssemblyOptions.cs │ │ └── ResolveTypeOptions.cs │ └── _doc │ │ └── NamespaceDoc.cs ├── Res.cs ├── Resources │ ├── AutoSaveErrorEventArgs.cs │ ├── DataNodeInfo.cs │ ├── DynamicResourceManager.cs │ ├── HybridResourceManager.cs │ ├── HybridResourceSet.cs │ ├── ResXCommon.cs │ ├── ResXDataNode.cs │ ├── ResXFileRef.cs │ ├── ResXNullRef.cs │ ├── ResXResourceEnumerator.cs │ ├── ResXResourceManager.cs │ ├── ResXResourceReader.cs │ ├── ResXResourceSet.cs │ ├── ResXResourceWriter.cs │ ├── ResourceFallbackManager.cs │ ├── _Enums │ │ ├── AutoAppendOptions.cs │ │ ├── AutoSaveOptions.cs │ │ ├── LanguageSettingsSignal.cs │ │ ├── ResXEnumeratorModes.cs │ │ ├── ResourceManagerSources.cs │ │ ├── ResourceSetRetrieval.cs │ │ └── _Extensions │ │ │ └── AutoAppendOptionsExtensions.cs │ ├── _Interfaces │ │ ├── IExpandoResourceManager.cs │ │ ├── IExpandoResourceSet.cs │ │ ├── IExpandoResourceSetInternal.cs │ │ └── IResXResourceContainer.cs │ └── _doc │ │ └── NamespaceDoc.cs ├── Security │ └── Cryptography │ │ ├── Crc32.cs │ │ ├── SecureRandom.cs │ │ └── _doc │ │ └── NamespaceDoc.cs ├── Serialization │ ├── ArrayIndexer.cs │ ├── Binary │ │ ├── AnyObjectSerializerWrapper.cs │ │ ├── BinarySerializationFormatter.CollectionSerializationInfo.cs │ │ ├── BinarySerializationFormatter.DataTypeDescriptor.cs │ │ ├── BinarySerializationFormatter.DataTypesEnumerator.cs │ │ ├── BinarySerializationFormatter.DeserializationManager.cs │ │ ├── BinarySerializationFormatter.SerializationManager.cs │ │ ├── BinarySerializationFormatter.SerializationManagerBase.cs │ │ ├── BinarySerializationFormatter.cs │ │ ├── BinarySerializer.cs │ │ ├── CustomSerializationBinder.cs │ │ ├── CustomSerializerSurrogateSelector.cs │ │ ├── ForwardedTypesSerializationBinder.cs │ │ ├── NameInvariantSurrogateSelector.cs │ │ ├── WeakAssemblySerializationBinder.cs │ │ ├── _Enums │ │ │ └── BinarySerializationOptions.cs │ │ ├── _EventArgs │ │ │ ├── DeserializingEventArgs.cs │ │ │ ├── GettingFieldEventArgs.cs │ │ │ ├── ObjectDataObtainedEventArgs.cs │ │ │ ├── ObjectDataRestoredEventArgs.cs │ │ │ ├── SerializingEventArgs.cs │ │ │ └── SettingFieldEventArgs.cs │ │ ├── _Extensions │ │ │ └── SerializationInfoExtensions.cs │ │ ├── _Interfaces │ │ │ ├── IBinarySerializable.cs │ │ │ └── ISerializationBinder.cs │ │ └── _doc │ │ │ └── NamespaceDoc.cs │ ├── RootTypeEnumerator.cs │ ├── SerializationHelper.cs │ └── Xml │ │ ├── XElementDeserializer.cs │ │ ├── XElementSerializer.cs │ │ ├── XmlDeserializerBase.cs │ │ ├── XmlReaderDeserializer.cs │ │ ├── XmlSerializer.cs │ │ ├── XmlSerializerBase.cs │ │ ├── XmlWriterSerializer.cs │ │ ├── _Enums │ │ ├── ComparerType.cs │ │ └── XmlSerializationOptions.cs │ │ └── _doc │ │ └── NamespaceDoc.cs ├── System │ ├── Diagnostics.CodeAnalysis │ │ └── Attributes.cs │ ├── MathF.cs │ ├── Runtime │ │ ├── CompilerServices │ │ │ ├── CallerArgumentExpressionAttribute.cs │ │ │ ├── CallerMemberNameAttribute.cs │ │ │ ├── MethodImpl.cs │ │ │ ├── ModuleInitializerAttribute.cs │ │ │ └── TupleElementNamesAttribute.cs │ │ └── ExceptionServices │ │ │ └── ExceptionDispatchInfo.cs │ ├── Threading │ │ ├── ManualResetEventSlim.cs │ │ └── Volatile.cs │ └── ValueTuple.cs ├── Threading │ ├── AsyncConfig.cs │ ├── AsyncConfigBase.cs │ ├── AsyncContextWrapper.cs │ ├── AsyncHelper.cs │ ├── ParallelConfig.cs │ ├── ParallelHelper.NestedTypes.cs │ ├── ParallelHelper.cs │ ├── SimpleContext.cs │ ├── TaskConfig.cs │ ├── _Extensions │ │ └── WaitHandleExtensions.cs │ ├── _Interfaces │ │ ├── IAsyncContext.cs │ │ └── IAsyncProgress.cs │ ├── _Structs │ │ ├── AsyncProgress.cs │ │ └── TimedSpinWait.cs │ └── _doc │ │ └── NamespaceDoc.cs ├── Throw.cs ├── _.cs ├── changelog.txt └── icons │ └── logo.png ├── KGySoft.TestsAndTools.ruleset ├── KGySoft.snk ├── LICENSE └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/GlobalSuppressions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/IteratorPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/IteratorPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/KGySoft.CoreLibraries.PerformanceTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/KGySoft.CoreLibraries.PerformanceTest.csproj -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/KGySoft.CoreLibraries.PerformanceTest.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/KGySoft.CoreLibraries.PerformanceTest.csproj.DotSettings -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/ParameterizedPerformanceTest .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/ParameterizedPerformanceTest .cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/Array2DPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/Array2DPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/Array3DPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/Array3DPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/ArraySectionPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/ArraySectionPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/CachePerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/CachePerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/CircularListPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/CircularListPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/CircularSortedListPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/CircularSortedListPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/ObjectModel/FastLookupCollectionPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/ObjectModel/FastLookupCollectionPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/StringKeyedDictionaryPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/StringKeyedDictionaryPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/ThreadSafeCachePerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/ThreadSafeCachePerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/ThreadSafeDictionaryPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Collections/ThreadSafeDictionaryPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/ComponentModel/FastBindingListPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/ComponentModel/FastBindingListPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/ComponentModel/SortableBindingListPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/ComponentModel/SortableBindingListPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/CoreLibraries/EnumComparerPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/CoreLibraries/EnumComparerPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/CoreLibraries/EnumPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/CoreLibraries/EnumPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/CoreLibraries/FastRandomPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/CoreLibraries/FastRandomPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/CoreLibraries/StringSegmentPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/CoreLibraries/StringSegmentPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/CoreLibraries/ThreadSafeRandomPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/CoreLibraries/ThreadSafeRandomPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Diagnostics/ProfilerPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Diagnostics/ProfilerPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Reflection/ReflectorPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Reflection/ReflectorPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Resources/ResXResourceManagerPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Resources/ResXResourceManagerPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Serialization/BinarySerializerPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Serialization/BinarySerializerPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Serialization/XmlSerializerPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Serialization/XmlSerializerPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Threading/ParallelHelperPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/Threading/ParallelHelperPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/ThrowHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/PerformanceTests/ThrowHelperTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/Program.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/RandomizedPerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/RandomizedPerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/Resources/TestResourceResX.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/Resources/TestResourceResX.resx -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/_Attributes/TestCaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/_Attributes/TestCaseAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/_Attributes/TestCaseGenericAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/_Attributes/TestCaseGenericAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/_Attributes/TestCaseSourceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/_Attributes/TestCaseSourceAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.PerformanceTest/_Attributes/TestCaseSourceGenericAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.PerformanceTest/_Attributes/TestCaseSourceGenericAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/GlobalInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/GlobalInitialization.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/GlobalSuppressions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/KGySoft.CoreLibraries.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/KGySoft.CoreLibraries.UnitTest.csproj -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/KGySoft.CoreLibraries.UnitTest.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/KGySoft.CoreLibraries.UnitTest.csproj.DotSettings -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Program.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestBinFile.bin: -------------------------------------------------------------------------------- 1 | Test File Invariant -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestCompiledResource.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestCompiledResource.en-US.resx -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestCompiledResource.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestCompiledResource.en.resx -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestCompiledResource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestCompiledResource.resx -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestIcon.ico -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestImage.hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestImage.hu.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestImage.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestImageInv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestImageInv.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestRes.resx -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestResourceResX.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestResourceResX.en-US.resx -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestResourceResX.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestResourceResX.en.resx -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestResourceResX.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestResourceResX.resx -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestSound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/Resources/TestSound.wav -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/Resources/TestTextFile.txt: -------------------------------------------------------------------------------- 1 | Test File Invariant -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/System.Runtime.CompilerServices/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/System.Runtime.CompilerServices/IsExternalInit.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/TestBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/AllowNullDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/AllowNullDictionaryTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/Array2DTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/Array2DTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/Array3DTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/Array3DTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/ArraySectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/ArraySectionTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/CacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/CacheTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/CastArrayTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/CastArrayTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/CircularListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/CircularListTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/CircularSortedListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/CircularSortedListTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/ObjectModel/FastLookupCollectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/ObjectModel/FastLookupCollectionTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/StringKeyedDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/StringKeyedDictionaryTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/ThreadSafeCacheTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/ThreadSafeCacheTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/ThreadSafeDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/ThreadSafeDictionaryTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/ThreadSafeHashSetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Collections/ThreadSafeHashSetTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/Collections/FastBindingListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/Collections/FastBindingListTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/Collections/ObservableBindingListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/Collections/ObservableBindingListTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/Collections/SortableBindingListTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/Collections/SortableBindingListTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/CommandsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/CommandsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/ObservableObjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/ObservableObjectTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/PersistableObjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/PersistableObjectTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/TypeConvertersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/TypeConvertersTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/UndoableObjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/UndoableObjectTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/ValidatingObjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/ComponentModel/ValidatingObjectTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/EnumComparerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/EnumComparerTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/EnumTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/EnumTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/ByteArrayExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/ByteArrayExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/DecimalExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/DecimalExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/DictionaryExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/DictionaryExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/DoubleExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/DoubleExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/EnumerableExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/EnumerableExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/FloatExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/FloatExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/ObjectExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/ObjectExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/RandomExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/RandomExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/SpanExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/SpanExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/StreamExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/StreamExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/StringExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/StringExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/StringSegmentExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/StringSegmentExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/TypeExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/Extensions/TypeExtensionsTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/FastRandomTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/FastRandomTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/FilesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/FilesTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/StringSegmentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/CoreLibraries/StringSegmentTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Diagnostics/ProfilerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Diagnostics/ProfilerTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Reflection/ReflectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Reflection/ReflectorTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Reflection/TypeResolverTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Reflection/TypeResolverTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/ResTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/ResTests.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/DynamicResourceManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/DynamicResourceManagerTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/HybridResourceManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/HybridResourceManagerTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/ResXDataNodeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/ResXDataNodeTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/ResXResourceManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/ResXResourceManagerTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/ResXResourceReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/ResXResourceReaderTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/ResXResourceSetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/ResXResourceSetTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/ResXResourceWriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Resources/ResXResourceWriterTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Binary/BinarySerializerTest.AdditionalMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Binary/BinarySerializerTest.AdditionalMembers.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Binary/BinarySerializerTest.TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Binary/BinarySerializerTest.TestData.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Binary/BinarySerializerTest.Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Binary/BinarySerializerTest.Tests.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Binary/CustomSerializerSurrogateSelectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Binary/CustomSerializerSurrogateSelectorTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Binary/ForwardedTypesSerializationBinderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Binary/ForwardedTypesSerializationBinderTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Xml/XmlSerializerTest.AdditionalMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Xml/XmlSerializerTest.AdditionalMembers.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Xml/XmlSerializerTest.TestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Xml/XmlSerializerTest.TestData.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Xml/XmlSerializerTest.Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Serialization/Xml/XmlSerializerTest.Tests.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Threading/AsyncHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Threading/AsyncHelperTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Threading/ParallelHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Threading/ParallelHelperTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/UnitTests/Threading/TestProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/UnitTests/Threading/TestProgress.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/_Attributes/TestCaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/_Attributes/TestCaseAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/_Attributes/TestCaseGenericAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/_Attributes/TestCaseGenericAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/_Attributes/TestCaseSourceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/_Attributes/TestCaseSourceAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/_Attributes/TestCaseSourceGenericAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/_Attributes/TestCaseSourceGenericAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/_Classes/BitmapConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/_Classes/BitmapConverter.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/_Classes/IconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/_Classes/IconConverter.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/_Classes/TestSerializationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/_Classes/TestSerializationBinder.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/_Classes/TestTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/_Classes/TestTypeResolver.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.UnitTest/_Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.UnitTest/_Extensions/Extensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.sln -------------------------------------------------------------------------------- /KGySoft.CoreLibraries.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries.sln.DotSettings -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/.nuspec/Icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/.nuspec/Icon64.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/.nuspec/KGySoft.CoreLibraries.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/.nuspec/KGySoft.CoreLibraries.nuspec -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/.nuspec/pack.bat: -------------------------------------------------------------------------------- 1 | @nuget pack -properties Configuration=Release KGySoft.CoreLibraries.nuspec -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/.nuspec/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/.nuspec/readme.md -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/.nuspec/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/.nuspec/readme.txt -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Annotations/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Annotations/Annotations.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Argument.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/AllowNullDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/AllowNullDictionary.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/Array2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/Array2D.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/Array3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/Array3D.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ArraySection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ArraySection.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ArraySectionEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ArraySectionEnumerator.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/Cache.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/CastArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/CastArray.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/CastArray2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/CastArray2D.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/CastArray3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/CastArray3D.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/CastArrayEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/CastArrayEnumerator.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/CircularList.BinarySearchHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/CircularList.BinarySearchHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/CircularList.ComparableBinarySearchHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/CircularList.ComparableBinarySearchHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/CircularList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/CircularList.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/CircularSortedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/CircularSortedList.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ConditionallyStoringLockFreeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ConditionallyStoringLockFreeCache.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ExpiringValuesCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ExpiringValuesCache.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/HashHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/HashHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ListSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ListSegment.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/LockFreeCache.GrowOnlyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/LockFreeCache.GrowOnlyDictionary.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/LockFreeCache.ReadOnlyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/LockFreeCache.ReadOnlyDictionary.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/LockFreeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/LockFreeCache.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/LockFreeCacheOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/LockFreeCacheOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/LockingCacheOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/LockingCacheOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/LockingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/LockingCollection.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/LockingDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/LockingDictionary.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/LockingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/LockingList.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ObjectModel/FastLookupCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ObjectModel/FastLookupCollection.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ObjectModel/VirtualCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ObjectModel/VirtualCollection.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ObjectModel/_doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ObjectModel/_doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/StringKeyedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/StringKeyedDictionary.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ThreadSafeCacheFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ThreadSafeCacheFactory.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ThreadSafeCacheOptionsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ThreadSafeCacheOptionsBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ThreadSafeDictionary.FixedSizeStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ThreadSafeDictionary.FixedSizeStorage.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ThreadSafeDictionary.PrivateTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ThreadSafeDictionary.PrivateTypes.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ThreadSafeDictionary.TempStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ThreadSafeDictionary.TempStorage.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ThreadSafeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ThreadSafeDictionary.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ThreadSafeHashSet.FixedSizeStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ThreadSafeHashSet.FixedSizeStorage.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ThreadSafeHashSet.TempStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ThreadSafeHashSet.TempStorage.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/ThreadSafeHashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/ThreadSafeHashSet.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Delegates/ConditionallyStoringItemLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Delegates/ConditionallyStoringItemLoader.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Enums/CacheBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Enums/CacheBehavior.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Enums/DictionaryInsertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Enums/DictionaryInsertion.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Enums/HashingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Enums/HashingStrategy.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Extensions/HashingStrategyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Extensions/HashingStrategyExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Interfaces/ICache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Interfaces/ICache.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Interfaces/ICacheStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Interfaces/ICacheStatistics.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Interfaces/IStringKeyedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Interfaces/IStringKeyedDictionary.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Interfaces/IStringKeyedReadonlyDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Interfaces/IStringKeyedReadonlyDictionary.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Interfaces/ISupportsRangeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Interfaces/ISupportsRangeCollection.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Interfaces/ISupportsRangeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Interfaces/ISupportsRangeList.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_Interfaces/IThreadSafeCacheAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_Interfaces/IThreadSafeCacheAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Collections/_doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Collections/_doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/BusinessObjects.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/BusinessObjects.cd -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/EditableHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/EditableHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/EditableObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/EditableObjectBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/ModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/ModelBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/ObservableObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/ObservableObjectBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/PersistableObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/PersistableObjectBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/UndoableHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/UndoableHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/UndoableObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/UndoableObjectBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/ValidatingObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/ValidatingObjectBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/ValidationResult.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/ValidationResultsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/ValidationResultsCollection.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Enums/EditableObjectBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Enums/EditableObjectBehavior.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Enums/ValidationSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Enums/ValidationSeverity.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_EventArgs/AddingNewEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_EventArgs/AddingNewEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_EventArgs/PropertyChangedExtendedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_EventArgs/PropertyChangedExtendedEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Extensions/PropertyChangedEventArgsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Extensions/PropertyChangedEventArgsExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/ICanEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/ICanEdit.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/ICanUndo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/ICanUndo.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/ICanUndoInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/ICanUndoInternal.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/ICanUndoRedo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/ICanUndoRedo.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/IPersistableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/IPersistableObject.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/IValidatingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_BusinessObjects/_Interfaces/IValidatingObject.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Collections/FastBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Collections/FastBindingList.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Collections/ItemComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Collections/ItemComparer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Collections/ItemGenericComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Collections/ItemGenericComparer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Collections/ObservableBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Collections/ObservableBindingList.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Collections/SortableBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Collections/SortableBindingList.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Collections/_Enums/BindingListDisposeBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Collections/_Enums/BindingListDisposeBehavior.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/CommandBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/CommandBinding.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/CommandBindingsCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/CommandBindingsCollection.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/CommandSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/CommandSource.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/CommandState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/CommandState.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/NullStateUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/NullStateUpdater.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/PropertyCommandStateUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/PropertyCommandStateUpdater.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/SimpleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/SimpleCommand.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/SimpleCommand`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/SimpleCommand`1.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/SourceAwareCommand`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/SourceAwareCommand`1.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/SourceAwareCommand`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/SourceAwareCommand`2.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/SourceAwareTargetedCommand`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/SourceAwareTargetedCommand`2.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/SourceAwareTargetedCommand`3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/SourceAwareTargetedCommand`3.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/TargetedCommand`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/TargetedCommand`1.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/TargetedCommand`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/TargetedCommand`2.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_Enums/CommandBindingErrorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_Enums/CommandBindingErrorContext.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_EventArgs/CommandBindingErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_EventArgs/CommandBindingErrorEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_EventArgs/ExecuteCommandEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_EventArgs/ExecuteCommandEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_Extensions/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_Extensions/Command.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommand.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommandBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommandBinding.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommandSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommandSource.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommandSource`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommandSource`1.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommandState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommandState.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommandStateUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommandStateUpdater.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommand`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_Command/_Interfaces/ICommand`1.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_TypeConverters/BinaryTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_TypeConverters/BinaryTypeConverter.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_TypeConverters/EncodingConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_TypeConverters/EncodingConverter.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_TypeConverters/FlagsEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_TypeConverters/FlagsEnumConverter.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_TypeConverters/StringSegmentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_TypeConverters/StringSegmentConverter.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/_TypeConverters/VersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/_TypeConverters/VersionConverter.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/ComponentModel/__doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/ComponentModel/__doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/ComparerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/ComparerHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/Enum.Format.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/Enum.Format.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/Enum.Parse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/Enum.Parse.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/Enum.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/EnumComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/EnumComparer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/EnumComparerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/EnumComparerBuilder.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/FastRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/FastRandom.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/Files.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/HiResTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/HiResTimer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/MutableString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/MutableString.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/MutableStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/MutableStringBuilder.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/RangeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/RangeInfo.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/ReferenceEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/ReferenceEqualityComparer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/ReferenceEqualityComparer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/ReferenceEqualityComparer`1.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/StringSegment.Comparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/StringSegment.Comparison.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/StringSegment.Lookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/StringSegment.Lookup.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/StringSegment.Slicing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/StringSegment.Slicing.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/StringSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/StringSegment.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/StringSegmentComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/StringSegmentComparer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/StringSegmentInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/StringSegmentInternal.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/ThreadLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/ThreadLocal.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/ThreadSafeRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/ThreadSafeRandom.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/TimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/TimeHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Enums/EnumFormattingOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Enums/EnumFormattingOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Enums/TypeNameKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Enums/TypeNameKind.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_EventArgs/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_EventArgs/EventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_EventArgs/HiResTimerElapsedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_EventArgs/HiResTimerElapsedEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/ArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/ArrayExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/ByteArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/ByteArrayExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/CharExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/CharExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/CollectionExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/DateTimeExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/DecimalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/DecimalExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/DelegateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/DelegateExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/DoubleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/DoubleExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/EnumeratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/EnumeratorExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/FloatExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/FloatExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/ObjectExtensions.ObjectCloner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/ObjectExtensions.ObjectCloner.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/ObjectExtensions.ObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/ObjectExtensions.ObjectConverter.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/RandomExtensions.CharSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/RandomExtensions.CharSet.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/RandomExtensions.ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/RandomExtensions.ObjectGenerator.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/RandomExtensions.RuneInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/RandomExtensions.RuneInfo.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/RandomExtensions.WordGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/RandomExtensions.WordGenerator.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/RandomExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/RandomExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/SpanExtensions.Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/SpanExtensions.Parser.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/SpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/SpanExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/StreamExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/StringExtensions.Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/StringExtensions.Parser.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/StringSegmentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/StringSegmentExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/UInt128Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/UInt128Extensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/UInt32Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/UInt32Extensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/UInt64Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/UInt64Extensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Classes/GenerateObjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Classes/GenerateObjectSettings.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Delegates/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Delegates/Conversion.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Delegates/ConversionAttempt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Delegates/ConversionAttempt.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Enums/FloatScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Enums/FloatScale.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Enums/ObjectInitialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Enums/ObjectInitialization.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Enums/StringCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Extensions/_Enums/StringCreation.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Structs/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Structs/Range.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Structs/StringSegmentSplitOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Structs/StringSegmentSplitOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_Structs/TypesKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_Structs/TypesKey.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/CoreLibraries/_doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/CoreLibraries/_doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Debug.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/CollectionDebugView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/CollectionDebugView.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/DictionaryDebugView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/DictionaryDebugView.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/DictionaryKeyCollectionDebugView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/DictionaryKeyCollectionDebugView.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/DictionaryValueCollectionDebugView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/DictionaryValueCollectionDebugView.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/MeasureItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/MeasureItem.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/MeasureOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/MeasureOperation.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/PerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/PerformanceTest.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/PerformanceTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/PerformanceTestBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/PerformanceTestBase`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/PerformanceTestBase`2.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/PerformanceTest`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/PerformanceTest`1.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/Profiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/Profiler.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/_Interfaces/IMeasureItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/_Interfaces/IMeasureItem.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/_Interfaces/IPerformanceTestResultCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/_Interfaces/IPerformanceTestResultCollection.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/_Interfaces/ITestCaseRepetition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/_Interfaces/ITestCaseRepetition.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/_Interfaces/ITestCaseResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/_Interfaces/ITestCaseResult.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Diagnostics/_doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Diagnostics/_doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/EnvironmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/EnvironmentHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/GlobalSuppressions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Help/Images/ComponentModel_BusinessObjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Help/Images/ComponentModel_BusinessObjects.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Help/Images/DynamicResourceManager_ExampleResources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Help/Images/DynamicResourceManager_ExampleResources.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Help/Images/NewClassLibrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Help/Images/NewClassLibrary.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Help/Images/NewConsoleApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Help/Images/NewConsoleApp.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Help/Images/NewResourcesFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Help/Images/NewResourcesFile.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Help/Images/ProfilerResults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Help/Images/ProfilerResults.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Help/Images/ResourceFileProperties_DynamicResourceManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Help/Images/ResourceFileProperties_DynamicResourceManager.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Help/Images/ResourceFileProperties_HybridResourceManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Help/Images/ResourceFileProperties_HybridResourceManager.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Help/Images/ResourceFileProperties_ResXResourceManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Help/Images/ResourceFileProperties_ResXResourceManager.png -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/IO/StringStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/IO/StringStream.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/IO/UnmanagedMemoryStreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/IO/UnmanagedMemoryStreamWrapper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/KGySoft.CoreLibraries.Messages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/KGySoft.CoreLibraries.Messages.resx -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/KGySoft.CoreLibraries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/KGySoft.CoreLibraries.csproj -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/KGySoft.CoreLibraries.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/KGySoft.CoreLibraries.csproj.DotSettings -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/KGySoft.CoreLibraries.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/KGySoft.CoreLibraries.ruleset -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/KGySoft.CoreLibraries.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/KGySoft.CoreLibraries.shfbproj -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/LanguageSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/LanguageSettings.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/MemoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/MemoryHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Module.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/PublicResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/PublicResources.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/Accessors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/Accessors.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/ActionMethodAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/ActionMethodAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/AssemblyResolver.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/CreateInstanceAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/CreateInstanceAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/DefaultCreateInstanceAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/DefaultCreateInstanceAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/FieldAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/FieldAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/FunctionMethodAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/FunctionMethodAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/IndexerAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/IndexerAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/MemberAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/MemberAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/MethodAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/MethodAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/ParameterizedCreateInstanceAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/ParameterizedCreateInstanceAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/PropertyAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/PropertyAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/ReflectionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/ReflectionException.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/Reflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/Reflector.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/Reflector`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/Reflector`1.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/SimplePropertyAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/SimplePropertyAccessor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/TypeResolver.TypeNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/TypeResolver.TypeNameResolver.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/TypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/TypeResolver.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/WinApi/ASSEMBLY_INFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/WinApi/ASSEMBLY_INFO.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/WinApi/Fusion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/WinApi/Fusion.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/WinApi/IAssemblyCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/WinApi/IAssemblyCache.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/_Enums/DynamicMethodOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/_Enums/DynamicMethodOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/_Enums/ReflectionWays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/_Enums/ReflectionWays.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/_Enums/ResolveAssemblyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/_Enums/ResolveAssemblyOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/_Enums/ResolveTypeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/_Enums/ResolveTypeOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Reflection/_doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Reflection/_doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Res.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/AutoSaveErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/AutoSaveErrorEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/DataNodeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/DataNodeInfo.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/DynamicResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/DynamicResourceManager.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/HybridResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/HybridResourceManager.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/HybridResourceSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/HybridResourceSet.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/ResXCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/ResXCommon.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/ResXDataNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/ResXDataNode.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/ResXFileRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/ResXFileRef.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/ResXNullRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/ResXNullRef.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/ResXResourceEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/ResXResourceEnumerator.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/ResXResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/ResXResourceManager.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/ResXResourceReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/ResXResourceReader.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/ResXResourceSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/ResXResourceSet.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/ResXResourceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/ResXResourceWriter.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/ResourceFallbackManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/ResourceFallbackManager.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Enums/AutoAppendOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Enums/AutoAppendOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Enums/AutoSaveOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Enums/AutoSaveOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Enums/LanguageSettingsSignal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Enums/LanguageSettingsSignal.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Enums/ResXEnumeratorModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Enums/ResXEnumeratorModes.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Enums/ResourceManagerSources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Enums/ResourceManagerSources.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Enums/ResourceSetRetrieval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Enums/ResourceSetRetrieval.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Enums/_Extensions/AutoAppendOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Enums/_Extensions/AutoAppendOptionsExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Interfaces/IExpandoResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Interfaces/IExpandoResourceManager.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Interfaces/IExpandoResourceSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Interfaces/IExpandoResourceSet.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Interfaces/IExpandoResourceSetInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Interfaces/IExpandoResourceSetInternal.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_Interfaces/IResXResourceContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_Interfaces/IResXResourceContainer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Resources/_doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Resources/_doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Security/Cryptography/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Security/Cryptography/Crc32.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Security/Cryptography/SecureRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Security/Cryptography/SecureRandom.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Security/Cryptography/_doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Security/Cryptography/_doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/ArrayIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/ArrayIndexer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/AnyObjectSerializerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/AnyObjectSerializerWrapper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.CollectionSerializationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.CollectionSerializationInfo.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.DataTypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.DataTypeDescriptor.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.DataTypesEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.DataTypesEnumerator.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.DeserializationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.DeserializationManager.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.SerializationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.SerializationManager.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.SerializationManagerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.SerializationManagerBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/BinarySerializationFormatter.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/BinarySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/BinarySerializer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/CustomSerializationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/CustomSerializationBinder.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/CustomSerializerSurrogateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/CustomSerializerSurrogateSelector.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/ForwardedTypesSerializationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/ForwardedTypesSerializationBinder.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/NameInvariantSurrogateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/NameInvariantSurrogateSelector.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/WeakAssemblySerializationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/WeakAssemblySerializationBinder.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_Enums/BinarySerializationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_Enums/BinarySerializationOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/DeserializingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/DeserializingEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/GettingFieldEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/GettingFieldEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/ObjectDataObtainedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/ObjectDataObtainedEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/ObjectDataRestoredEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/ObjectDataRestoredEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/SerializingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/SerializingEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/SettingFieldEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_EventArgs/SettingFieldEventArgs.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_Extensions/SerializationInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_Extensions/SerializationInfoExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_Interfaces/IBinarySerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_Interfaces/IBinarySerializable.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_Interfaces/ISerializationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_Interfaces/ISerializationBinder.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Binary/_doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Binary/_doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/RootTypeEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/RootTypeEnumerator.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/SerializationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/SerializationHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Xml/XElementDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Xml/XElementDeserializer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Xml/XElementSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Xml/XElementSerializer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Xml/XmlDeserializerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Xml/XmlDeserializerBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Xml/XmlReaderDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Xml/XmlReaderDeserializer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Xml/XmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Xml/XmlSerializer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Xml/XmlSerializerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Xml/XmlSerializerBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Xml/XmlWriterSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Xml/XmlWriterSerializer.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Xml/_Enums/ComparerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Xml/_Enums/ComparerType.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Xml/_Enums/XmlSerializationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Xml/_Enums/XmlSerializationOptions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Serialization/Xml/_doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Serialization/Xml/_doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/Diagnostics.CodeAnalysis/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/Diagnostics.CodeAnalysis/Attributes.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/MathF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/MathF.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/Runtime/CompilerServices/CallerArgumentExpressionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/Runtime/CompilerServices/CallerArgumentExpressionAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/Runtime/CompilerServices/CallerMemberNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/Runtime/CompilerServices/CallerMemberNameAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/Runtime/CompilerServices/MethodImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/Runtime/CompilerServices/MethodImpl.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/Runtime/CompilerServices/ModuleInitializerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/Runtime/CompilerServices/ModuleInitializerAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/Runtime/CompilerServices/TupleElementNamesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/Runtime/CompilerServices/TupleElementNamesAttribute.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/Runtime/ExceptionServices/ExceptionDispatchInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/Runtime/ExceptionServices/ExceptionDispatchInfo.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/Threading/ManualResetEventSlim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/Threading/ManualResetEventSlim.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/Threading/Volatile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/Threading/Volatile.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/System/ValueTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/System/ValueTuple.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/AsyncConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/AsyncConfig.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/AsyncConfigBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/AsyncConfigBase.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/AsyncContextWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/AsyncContextWrapper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/AsyncHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/AsyncHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/ParallelConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/ParallelConfig.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/ParallelHelper.NestedTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/ParallelHelper.NestedTypes.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/ParallelHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/ParallelHelper.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/SimpleContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/SimpleContext.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/TaskConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/TaskConfig.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/_Extensions/WaitHandleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/_Extensions/WaitHandleExtensions.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/_Interfaces/IAsyncContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/_Interfaces/IAsyncContext.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/_Interfaces/IAsyncProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/_Interfaces/IAsyncProgress.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/_Structs/AsyncProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/_Structs/AsyncProgress.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/_Structs/TimedSpinWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/_Structs/TimedSpinWait.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Threading/_doc/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Threading/_doc/NamespaceDoc.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/Throw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/Throw.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/_.cs -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/changelog.txt -------------------------------------------------------------------------------- /KGySoft.CoreLibraries/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.CoreLibraries/icons/logo.png -------------------------------------------------------------------------------- /KGySoft.TestsAndTools.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.TestsAndTools.ruleset -------------------------------------------------------------------------------- /KGySoft.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/KGySoft.snk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koszeggy/KGySoft.CoreLibraries/HEAD/README.md --------------------------------------------------------------------------------