Implement .NET 7 runtime support and bindings generation
This commit is contained in:
@@ -41,7 +41,11 @@ namespace Flax.Build
|
||||
/// <returns>The empty array object.</returns>
|
||||
public static T[] GetEmptyArray<T>()
|
||||
{
|
||||
#if USE_NETCORE
|
||||
return Array.Empty<T>();
|
||||
#else
|
||||
return Enumerable.Empty<T>() as T[];
|
||||
#endif
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user