Hi,
i just wanted to ask you if i do something wrong. I always try to make use of the keyword “var” as often as i can. This keeps the code clean.
I used Aspose Slides with VS2010 and now with VS2012.
Everytime i write something like
foreach (var shapeItem in slideItem.Shapes)
Then shapeItem has no intellisense. I can write propertynames blind and they work, but thats no good workaround to know all properties and methods in mind.
If i write the type explicit, the intellisense will be shown.
foreach (Aspose.Slides.Pptx.ShapeEx shapeItem in slideItem.Shapes)
I also use some other third party programs like the Developer Express Suite.
There i have got no problems with the use of “var”.
This behavior is just with Aspose Slides.
Do you already know this behavior? Is there any solution?