/// If the system store name provided in this parameter is not the name of an existing system store, a new system store will be created and used.
/// Some example system stores are listed in the following table.
///
///
/// Predefined system store name
/// Meaning
///
/// -
/// "CA"
/// Certification authority certificates.
///
/// -
/// "MY"
/// A certificate store holding "My" certificates with their associated private keys.
///
/// -
/// "ROOT"
/// Root certificates.
///
/// -
/// "SPC"
/// Software publisher certificates.
///
///
///
public CertificateStore(string store) : this(StoreLocation.Users, store) {}
///