Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有方法的类,在它内部我获取复杂对象,并从中创建具有简单结构的新对象,用户可以以更方便的方式使用它。我将此对象实例存储在内存中并为其提供简单的 api。我给它命名为Serializable但我不确定这是正确的名称。
Transform
TransformToX
X
ToX
ToString
ToInt32
我使用类似的名称来命名类似的方法asThing()。我想在 C# 中应该是AsThing(). 另一种选择可能是效仿 Java 的Numberclass:Number.intValue()等示例。
asThing()
AsThing()
Number
Number.intValue()