Hello!
Assume I have the class shown below and it's stored in a generic List.
If I want to find the Value for a specific Id how do I use the find method.
We can assume that the generic List collection is named
myWorkSheetRowP arameterList
public class WorkSheetRowPar ameter
{
public string WorkSheetRowId {get; set};
public string Id {get;set};l
public string Type {get;set};
public string Value {get;set};
public string Disabled{get;se t};
public string ParameterName{g et;set};
public string ParameterDuplic ate{get;set};
}
//Tony
Assume I have the class shown below and it's stored in a generic List.
If I want to find the Value for a specific Id how do I use the find method.
We can assume that the generic List collection is named
myWorkSheetRowP arameterList
public class WorkSheetRowPar ameter
{
public string WorkSheetRowId {get; set};
public string Id {get;set};l
public string Type {get;set};
public string Value {get;set};
public string Disabled{get;se t};
public string ParameterName{g et;set};
public string ParameterDuplic ate{get;set};
}
//Tony
Comment