I\'m experiencing \"null reference exception\" when I\'m attempting to return a value from a structure.
here is the code:
AssetItem item = new AssetItem(
On a side note, why create a new instance then re-assign to it without using it for any purpose..
AssetItem item = new AssetItem(); item = initModified();
Could become
AssetItem item = initModified();