Results 105 issues of NN

There is WriteLine but no WriteLineAsync: https://docs.microsoft.com/en-us/dotnet/api/system.io.streamwriter.writelineasync?view=netframework-4.7.2 As well ReadLineAsync https://docs.microsoft.com/en-us/dotnet/api/system.io.textreader.readlineasync?view=netframework-4.7.2#System_IO_TextReader_ReadLineAsync

.NET Standard < 2.0 and .NET Core < 2.0 doesn't have StringComparison.InvariantCultureIgnoreCase and this code doesn't compile: ```cs string.Equals(s1, s2, StringComparison.InvariantCultureIgnoreCase); ``` There should be StringEx.Equals(string, string, StringComparisonEx.InvariantCultureIgnoreCase);

Possible implementation: ```cs private static string GetCurrentMethod([System.Runtime.CompilerServices.CallerMemberName] string memberName = "") => memberName; ``` https://docs.microsoft.com/en-us/dotnet/api/system.runtime.compilerservices.callermembernameattribute?view=netframework-4.7.2

StringComparer.InvariantCultureIgnoreCase StringComparer.InvariantCulture Perhaps there should be Strong imparted or smth. https://github.com/NN---/CodeJam/blob/theraot_targeting/CodeJam.Main/Targeting/NetCore/InvariantCultureStringComparer.cs ```cs using System; #if LESSTHAN_NETSTANDARD20 || LESSTHAN_NETCOREAPP20 using System.Globalization; #endif // ReSharper disable once CheckNamespace namespace CodeJam { #if...

AssemblyEx.Load(string) ``` Assembly.Load(new AssemblyName(str)) ``` AssemblyEx.Load(byte[]) ```cs // requires "System.Runtime.Loader": "4.0.0", public Assembly LoadAssembly(MemoryStream peStream, MemoryStream pdbStream) { return System.Runtime.Loader.AssemblyLoadContext.Default.LoadFromStream(peStream, pdbStream); } ``` https://stackoverflow.com/questions/43032847/load-assembly-from-bytes-in-asp-net-core

```cs public virtual bool IsEnum => IsSubclassOf(typeof(Enum)); ``` https://github.com/dotnet/coreclr/blob/master/src/System.Private.CoreLib/shared/System/Type.cs#L105

https://docs.microsoft.com/en-us/dotnet/api/system.convert.tobase64string?view=netframework-4.7.2 ToBase64String(Byte[], Int32, Int32, Base64FormattingOptions) ToBase64String(Byte[], Base64FormattingOptions) https://docs.microsoft.com/en-us/dotnet/api/system.convert.tobase64chararray?view=netframework-4.7.2 ToBase64CharArray(Byte[], Int32, Int32, Char[], Int32, Base64FormattingOptions)

Missing WriteAsync(String) https://docs.microsoft.com/en-us/dotnet/api/system.io.textwriter.writeasync?view=netframework-4.7.2