If statement
unknown
csharp
2 years ago
156 B
6
Indexable
if (theAttrib != null && !string.IsNullOrEmpty(theAttrib.ElementName))
{
return theAttrib.ElementName;
}
else
{
return serializedObjectType.Name;
}
Editor is loading...
if (theAttrib != null && !string.IsNullOrEmpty(theAttrib.ElementName))
{
return theAttrib.ElementName;
}
else
{
return serializedObjectType.Name;
}