asp.net - Put get set properties in another file -
here develop function.but after saw notimplemented exception occured there.and set properties.here code, private void modifymessage() { char [] characters_to_removed_from_end = { ' ' }; string trimmedstring = this.message_in.trimend(characters_to_removed_from_end); trimmedstring = regex.replace(trimmedstring, @"s\+", ""); trimmedstring = rearrangemessage(trimmedstring); } after automatically generate below code, private string rearrangemessage(string trimmedstring) { throw new notimplementedexception(); } public string message_in { get; set; } public string rearrangemessage { get; set; } } can put second code in file ? or happen here ? post edited full code.... using system; using system.collections.generic; using system.linq; using system.web; using system.web.ui; using system.web.ui.webcontrols; using system.configuration; using system.data.sqlclient; using system....