I'm trying to convert a sample for running a SQL/XML "UpdateGram" from VB to C#.
VB Example:
 conn.Properties("SQLXML Version") = "SQLXML.4.0"  
C# Attempts:
 conn.Properties["SQLXML Version"] = "SQLXML.4.0";
Error: cannot be assigned, is read only.