Value cannot be null. Parameter name: String Error
Hi,
When I try to get the value of a property I get this error:
Value cannot be null. Parameter name: String
My code:
var blenderModel = Lecoati.LeBlender.Extension.Helper.DeserializeBlenderModel((object)control); // This function deserialize correctly without any error
foreach (var item in blenderModel.Items)
{
if ( item.HasProperty(alias) )
string myValue = item.GetValue(alias);; // this line throws error
}
Value cannot be null. Parameter name: String Error
Hi, When I try to get the value of a property I get this error:
My code:
Help me please!!
is working on a reply...