惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
The Blog of Author Tim Ferriss
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
云风的 BLOG
云风的 BLOG
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
P
Palo Alto Networks Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
Schneier on Security
Engineering at Meta
Engineering at Meta
I
InfoQ
L
LangChain Blog
Cyberwarzone
Cyberwarzone
T
Tenable Blog
WordPress大学
WordPress大学
P
Privacy & Cybersecurity Law Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Jina AI
Jina AI
C
CERT Recently Published Vulnerability Notes
Scott Helme
Scott Helme
博客园 - 三生石上(FineUI控件)
酷 壳 – CoolShell
酷 壳 – CoolShell
Know Your Adversary
Know Your Adversary
D
Darknet – Hacking Tools, Hacker News & Cyber Security
The Last Watchdog
The Last Watchdog
Last Week in AI
Last Week in AI
Cloudbric
Cloudbric
S
SegmentFault 最新的问题
爱范儿
爱范儿
Application and Cybersecurity Blog
Application and Cybersecurity Blog
博客园 - 叶小钗
AI
AI
T
Tor Project blog
I
Intezer
T
Threatpost
www.infosecurity-magazine.com
www.infosecurity-magazine.com
V
Visual Studio Blog
N
News and Events Feed by Topic
Latest news
Latest news
S
Security Affairs
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
B
Blog RSS Feed
C
Cybersecurity and Infrastructure Security Agency CISA
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
S
Securelist

博客园 - Findekano

C#异步调用的bug? 恩,VS调试时候的监视也不能够尽信啊 最近正在看的几本书 [C# FAQ]通过Windows Forms预处理Win32消息 将应用程序直接加入到"Run..."中打开的小工具 VS.NET2005使用体验(一) OpenGL & MFC 相关联接 .::Findekano's Tidbet:: .::Findekano's Tidbet:: .::Findekano's Tidbet:: .:: Findekano's Tidbet :: CorelDraw's Application Recovery Manager.. .:: Findekano's Tidbet :: C#&.NET Framework中的Beep .:: Findekano's Tidbet :: [C# FAQ]C#代码中如何启动另一个应用程序或批处理程序? 今天开始,努力攒钱... 又闻到味道 如何保持代码格式?
VS.NET2005使用体验(二)
Findekano · 2004-11-15 · via 博客园 - Findekano

自从安装了VS.NET 2K5,写什么试验性质的小程序就都在新版的IDE中进行了。高度智能化的IDE真的能够大大提高开发效率,只是也大大促进了程序员的“懒惰”习性,赫赫。最近写了一个多线程的脚本记录和分析工具,其中的文本解析和储存是基于C++ STL的容器和std::string类别。2k5 IDE对STL容器调试期内容求值的支持(见VS.NET2005使用体验(一) ) 使得调试工作轻松多了。^_^。


这次对VS.NET 2k5 IDE的改进,首先是C#的自动完成功能。在C#工程中,一边输入,IDE会很智能的把你可能想要输入的内容显示在候选框内,比2k3进步的是,现在连关键字也可以自动完成了,输入abs,就会自动出现abstract候选,代码书写速度提高很多呢。

此外,如果一个类的父类有虚方法或者此类实现了一个接口,将光标放在父类或接口的名称上,使用快捷键Ctrl+Alt+F10可以直接插入这些虚方法的实现框架:


顺便也看了一下传说中的WhiteHorse,在C#工程上的快捷菜单上选择"View in Diagram"就可以对这个工程自动进行逆向工程,并给出类图,文件的扩展名为.cd(class diagram?),类图的外观确实是美轮美奂,能够把UML图作的这么花哨的也就只有微软了。只是在工具栏里面找了好久不知道怎么绘制依赖关系...汗。而且也不知道如何绘制其他类型的UML图。感觉上WhiteHorse还并不是一个完整的建模工具。