How can i create a partial class at runtime?
Example: I have a class
public partial class A
{
}
I want to create partial of my A class at runtime from an XML file. because I don't compile my project when any change in code. I know this is little meaning less but i need this.
XOML files work for me?