6 changed files with 40 additions and 34 deletions
@ -0,0 +1,15 @@ |
|||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
|
||||||
|
namespace Tools.ExcelResolver.Editor |
||||||
|
{ |
||||||
|
internal class TList : TType |
||||||
|
{ |
||||||
|
internal override string TypeName => "list"; |
||||||
|
internal override Type RealType => typeof(List<>); |
||||||
|
internal override object TryParseFrom(string s) |
||||||
|
{ |
||||||
|
return null; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,3 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: 72125f85fbca4265998a4d0ea2b6b041 |
||||||
|
timeCreated: 1737301711 |
Loading…
Reference in new issue