Is there any way, how to convert this:
namespace Library
{
public struct Content
{
int a;
int b;
}
}
I have str
You have several options, including:
Library2.Content and pass in the values of your Library.Content to the constructor.