Why i can't use veriable as a type?
Why i can't use variable as a type?
var dataTypes = fields[b].FieldType; // system int 32[]
Type what = Type.GetType(dataTypes.ToString());
print(what);
what b1 = (what)takeCom.GetType().GetField("_LiczbaItemow").GetValue(takeCom);
Error of visual studio code " ''what' is a variable but is used like a type "
Comment
Your answer