I'm studying inheritance and polymorphism now and I've came across the concept that the compiler will evaluate (using reflection?) what type of object is stored in a base-type reference in order to decide what method to run upon calling a method with an override.
The compiler does no such evaluation; the compiler is done executing long before the code runs. The runtime evaluates what type of object is referred to in order to decide which virtual method to call. It does not do so using Reflection.
What the compiler evaluates is what virtual method slot should be used when the method is called at runtime. The compiler issues instructions that say "runtime, when this code runs, interrogate this object on this slot, and see what method is stored in that slot, and execute it".
It is educational to see how you might implement virtual methods in C# if C# did not have them built-in. See my three-part series of articles on that.
It's always been my understanding that on declaring any type of object it's a way of sort of designating memory for that specific type of object.
Now would be a good time in your education to start using words like "declaring", "object" and so on, correctly. Objects are not declared. Types are declared. Variables are declared.
So, it has been your understanding that declaring a local variable of a given type is a way of designating memory for that specific type of object. Which is almost correct. If the type is a value type then that is correct. If the type is a reference type then the local variable of that type is storage that contains a reference to other storage that actually contains the object.
That is absolutely fundamental to C#, so make sure that you understand that. A local variable of type string does not contain a string. It contains a reference to a string; the string is somewhere else entirely and the reference refers to that location.
In the code above I've put memory aside for a Shape but it can in fact reference/store an object of type Circle!?
It can store a reference to a Circle, yes, because a Circle is a kind of Shape and therefore a reference to a Circle may be used where a reference to a Shape is needed. It cannot store a Circle because a Circle is not a reference to a Shape.
If you have a notebook that contains the addresses of your friends, it might contain a reference to a unit in an apartment building, and it might contain a reference to a house. The notebook does not contain an apartment building or a house. Apartments and houses are both kinds of dwellings; your notebook contains references to dwellings.
Suppose a friend buys some land, builds a house, and sends you their new address. You do not need to allocate space in your notebook for the house. The city zoning department already allocated space for the house to be built somewhere else. You need to allocate space in your notebook for the address of the dwelling. The fact that a house is a kind of dwelling is what makes it legal to put the address in your notebook.
When you create an object that is an instance of a reference type, the runtime is the zoning department -- it takes care of allocating the storage for the actual object. The constructor "builds the house". The local variable is allocated to store the reference to the storage for the actual object.
Value types do not have reference semantics; rather, a variable of value type contains the actual object. That's why value types are called "value types" and reference types are called "reference types"; because a variable of value type stores the actual object and a variable of reference type stores a reference to an object that is somewhere else entirely.
I'm not sure that that answers your question because you don't seem to actually ask a question in your question. What is your question?