How to Create Class Files dynamically in c#
Can anyone pls tell me how create the class files dynamically.
Here is the structure of class file.
public class StaticForm { public StaticForm() { }
private int_JobNumber;
private string _JobTitle;
public int JobNumber { get { return _JobNumber; } set { _JobNumber = value; } }
public string JobTitle { get { return _JobTitle; } set { _JobTitle = value; } }
}