可以在.net框架上合理实施Go吗? [关闭]

Given that the .net framework was designed to support languages of all flavors, can Go be implemented with full fidelity on it? While both are managed, there seem to be many unique aspects to Go compared to the languages currently supported by .net, including:

  1. Go's automatic management of stack vs heap variables.
  2. Channels
  3. Packages as an intrinsic part of Go
  4. Go's concurrency vs .net's Async/await
  5. Go's ABI

Do any of these (or any other factors) prevent a full-featured Go from being written on top of the .net framework?

This question is to help me understand of the differences between Go and the .net framework at the most basic levels.