Click here to Skip to main content
15,896,469 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have a class which Return Model as Object
private object Autonumber(string Loc)
{
...
...
return _Model;
}

I want to pass object variable as specific Model type
like:


public ActionResult DataSave(Model _Model)
{
object AUT=Autonumber(_Model.Loc);

//I want to pass Specific value in to _Model.Name which I get from Object AUT
_Model.Name=AUT.Name;

}
Please write down the steps.
Posted
Comments
Sergey Alexandrovich Kryukov 13-Jul-13 1:01am    
Don't return Object, return real Model type.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900