I'm new to Godot and trying to do something like this:

Array<Node> enemies = GetTree().GetNodesInGroup("Enemy") as Array<Node2D>;

Essentially, I have enemies, the root node of which are CharacterBody2Ds. I want to get an array of all of them in the scene, and then be able to access their GlobalPosition, which is on the Node2D portion.

I find casting in C# in Godot to be kind of confusing in general, so I probably just don't understand some fundamental concept.

I have almost no experience using C# in Godot.

But you might not be able cast an Array of Node to an Array of Node2D. If that's true, you could try looping through the Array and inside the loop, cast the individual Node to a Node2D so that you can access its GlobalPosition.