Aspose.Cells.Examples.CSharp.Articles.UsingImageMarkersWhileGroupingDataInSmartMarkers.Person.Person C# (CSharp) Méthode

Person() public méthode

public Person ( string name, string city, byte photo ) : System
name string
city string
photo byte
Résultat System
            public Person(string name, string city, byte[] photo)
            {
                m_Name = name;
                m_City = city;
                m_Photo = photo;
            }
UsingImageMarkersWhileGroupingDataInSmartMarkers.Person