[注意] 编写时注意事项 #43
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
错误 CS0118 “Type”是 命名空间,但此处被当做 类型 来使用 XericLibrary
在引入比如
SingleBase<>类型时,namespace XericLibrary.Runtime.Type可能会与Type类型重名,导致项目会产生报错.可以通过将
Type改为System.Type来解决这个问题。或者
SingleBase<>改为XericLibrary.Runtime.Type.SingleBase<>也行。