2using System.Collections.Generic;
3using System.Runtime.InteropServices;
7 [StructLayout(LayoutKind.Sequential)]
8 internal struct ServiceDescriptionInfo
10 [MarshalAs(UnmanagedType.LPWStr)]
11 private string serviceDescription;
13 public ServiceDescriptionInfo(
string serviceDescription)
15 this.serviceDescription = serviceDescription;
18 public string ServiceDescription
20 get {
return serviceDescription; }
21 set { serviceDescription = value; }