This will get you a StackOverflowException, since you are calling the property setter recursively in the last line of set (and get, for that matter). You need to assign the value to a field of a class, and read it from that field in the getter. Your current code simply calls into the same property accessor method infinitely, until you run out of stack space.
Common C# naming conventions suggests PascalCasing for property and method names, and camelCasing for instance variables, possibly prefixed with an underscore.
This code should work:
private string lastModified; // instance variable
public string LastModified
{
get { return this.lastModified; }
set
{
long ms = Int64.Parse(value);
var date = new DateTime(1970, 1, 1).AddSeconds(ms);
date = date.ToLocalTime();
this.lastModified = date.ToString("HH_mm_yyyy");
}
}
Also, "Not working" is kind of broad; but I am going to guess that you will see that the ToLocalTime method does not get applied to the date. This is because DateTime in C# is immutable, so it cannot be changed after construction. You will need to assign your datevariable to the result of ToLocalTime():
date = date.ToLocalTime();