Imagine that you want this literal string in your C# code:
<GC xmlns:dt="urn:schemas-microsoft-com:datatypes">
<pInLotIDs x:dt="list">
<item dt:dt="string">108P091G-000</item>
</pInLotIDs>
</GC>
Then you have to code this in C# as:
string sInputData = @"
<GC xmlns:dt=""urn:schemas-microsoft-com:datatypes"">
<pInLotIDs CSIM:dt=""list"">
<item dt:dt=""string"">108P091G-000</item>
</pInLotIDs>
</GC>
Ugh!
No comments:
Post a Comment