Should I use this.
Imports System.IO Dim myStream As New Stream
or this..
Dim myStream As New System.IO.Stream
Does it make any difference to performance / memory usage?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No difference whatsoever – it’s just a matter of taste and affects readability only.
By the way, CLR is not even aware of the concept of ‘namespaces’: namespace names become prefixes to type names.