Opc.Ua.StringTable.StringTable C# (CSharp) Method

StringTable() public method

Creates an empty collection which is marked as shared.
public StringTable ( bool shared ) : System
shared bool
return System
        public StringTable(bool shared)
        {
            m_strings = new List<string>();

            #if DEBUG
            m_shared = shared;
            m_instanceId = Interlocked.Increment(ref m_globalInstanceCount);
            #endif
        }
        

Same methods

StringTable::StringTable ( ) : System
StringTable::StringTable ( IEnumerable strings ) : System
StringTable