Linux 平台上.NET Core 中线程的ApartmentState 是什么意思?

What does ApartmentState of a thread in .NET Core on Linux platform mean?

据我了解,.NET 中线程的 ApartmentState 属性 是 COM 的东西。当线程在Linux 平台上由.NET Core runtime 管理时,这个属性 有什么意义吗?是否保证这个属性在Linux平台上总是ApartmentState.Unknown?

在 Unix 上,the implementation of the GetApartmentState method is

public ApartmentState GetApartmentState() => ApartmentState.Unknown;

所以是的,好像保证是ApartmentState.Unknown.