R
Ron Vecchi
If a have a funtion:
public object MyFCT(string searchOn, System.Type typ){
string foundval;
///foundval is a string pulled from a database
/// How can I cast the string into the supplied System.Type typ
/// and then return the object?
/// Thanks
}
public object MyFCT(string searchOn, System.Type typ){
string foundval;
///foundval is a string pulled from a database
/// How can I cast the string into the supplied System.Type typ
/// and then return the object?
/// Thanks
}