05 2022 档案
摘要:一个使用序列化和反序列化方式实现的深度拷贝 1 using System.IO; 2 using System.Runtime.Serialization.Formatters.Binary; 3 4 namespace PDIDataInputEndpoints.Tools 5 { 6 publi
阅读全文
摘要:Automapper 顾名思义就是自动完成两个对象之间的copy,一个不错的教程:https://dotnettutorials.net/lesson/automapper-in-c-sharp/ 不过这个教程的最后一节涉及到的UseValue 及 ResolveUsing 都已经停用了,目前有其他
阅读全文
摘要:1. Comprehensions 2. List Comprehensions 与上面的语句达到相同的效果,但是复杂的多 another example and another for set comprehensions 3. Dictionary Comprehensions 下面的例子里,去
阅读全文
摘要:1. REPL: Read, Evaluate, Print, Loop 2. int REPL, type _ to most recently printed value, only in REPL 3. 在REPL里输入多行: 4. PEPs: Python Enhancement Propo
阅读全文
摘要:1. jupyter notebook 是一个基于web方式的ide 1 C:\luke\Learn\ML\LearnJupyter>jupyter notebook 2 [I 09:54:37.690 NotebookApp] Serving notebooks from local direct
阅读全文