How to cast x++ int type to C# int type
How to cast x++ int type to C# int type
did it resolve your concern? You can also refer community.dynamics.com/.../issue-with-cast-issue-with-string-between-c-and-x for more information on type casting
Do you need to cast string or int? For string use System.string and for int use System.Int32 to declare variable in x++.
For example
str xStr = "test";
System.String cStr;
cStr = xStr;
int i = 1;
System.Int32 cInt = i;
Not sure if you are looking something else.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,214 Most Valuable Professional
nmaenpaa 101,156