Using Visual C# 2008 Express edition. Following along in the book 'Getting to know arcobjects' (vba). I just need confirmation that what I wrote is correct.
VB Code:
Dim pMap As IMap
Set pMap = New Map
pMap.Name = "Ryan's Map"
Here's my C# code:
IMap pMap = new MapClass();
pMap.Name = "Test Map";
