doglin82
April 7th, 2010, 05:05 PM
Hi :
How many instances of a shared variable will be created in a class? just one? correct
Public Class DocumentDelivery
Implements IDisposable
'A rendered list that contains the rendered documents
Public Shared RenderList As List(Of Byte()())
End Class
So, in other words, the DocumentDelivery class will only have one instance of RenderList, correct? can somebody confirm?
How many instances of a shared variable will be created in a class? just one? correct
Public Class DocumentDelivery
Implements IDisposable
'A rendered list that contains the rendered documents
Public Shared RenderList As List(Of Byte()())
End Class
So, in other words, the DocumentDelivery class will only have one instance of RenderList, correct? can somebody confirm?