samanta

samanta

  • NA
  • 429
  • 131.3k

How to Create Class Files dynamically in c#

Aug 22 2014 3:47 AM

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; } }
}