Microsoft.Protocols.TestSuites.SharedAdapter.ExGUIDArray.ExGUIDArray C# (CSharp) Method

ExGUIDArray() public method

Initializes a new instance of the ExGUIDArray class with specified value.
public ExGUIDArray ( List content ) : System
content List Specify the list of ExGuid contents.
return System
        public ExGUIDArray(List<ExGuid> content)
            : this()
        {
            this.content = new List<ExGuid>();
            if (content != null)
            {
                foreach (ExGuid extendGuid in content)
                {
                    this.content.Add(new ExGuid(extendGuid));
                }
            }

            this.Count.DecodedValue = (ulong)this.Content.Count;
        }

Same methods

ExGUIDArray::ExGUIDArray ( ) : System
ExGUIDArray::ExGUIDArray ( ExGUIDArray extendGuidArray ) : System