One way I have done is to use ::CryptExportKey() to get the PRIVATEKEYBLOB or PUBLICKEYBLOB.
From there you can use the PUBLICKEYSTRUC and RSAPUBKEY to extract the various key components and write a key data xml file that looks like this (base64 data removed):

    <RSAKeyValue>
       <Modulus></Modulus>
       <Exponent></Exponent>
       <P></P>
       <Q></Q>
       <DP></DP>
       <DQ></DQ>
       <InverseQ</InverseQ>
       <D></D>
    </RSAKeyValue>

You can then load this xml from RSA.FromXmlString(). Let me know if that makes sense I think I have the mappings from the PUBLICKEYSTRUC and RSAPUBKEY structs somewhere. It is all straight foward though.