(string product, string property, [Out] StringBuilder valueBuf, ref Int32 len)
| 13 | internal static extern int MsiEnumProducts(int iProductIndex, StringBuilder lpProductBuf); |
| 14 | |
| 15 | [DllImport("msi.dll", CharSet = CharSet.Unicode)] |
| 16 | internal static extern Int32 MsiGetProductInfo(string product, string property, [Out] StringBuilder valueBuf, ref Int32 len); |
| 17 | } |
| 18 | |
| 19 | static class Program |