Sample
文章平均质量分 60
is2120
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c# 注册表.代码示例.(迭代遍历注册表)[Demo]
//z 2012-5-3 16:51:44 PM IS2120@CSDN 如果欲修改值,打开时如下:// RegistryKey skms = SoftwareKey.OpenSubKey(RegistryKeyName, true);using System;using System.Collections.Generic;using System.Linq;using System.原创 2012-05-03 09:04:27 · 1916 阅读 · 0 评论 -
c# Foreach last (zz)
c# Foreach last//z 2012-09-06 15:49:01 IS2120@CSDN.T2414191273[T14,L128,R4,V138]If you just need to do something with the last element (as opposed to something different with the last element th原创 2012-09-06 15:45:29 · 835 阅读 · 0 评论 -
Code Snippet
c/c++求两个日期之间的间隔天数原创 2014-04-22 13:19:19 · 819 阅读 · 0 评论 -
c++11 : range-based for loop
1. #include #include int main (){ std::vector data = { 1, 2, 3, 4 }; for ( int datum : data ) { std::cout << datum << std::endl; }}原创 2014-06-12 13:29:40 · 3589 阅读 · 0 评论 -
c++ 计时
class ZTimer{public: ZTimer() { _startCount.QuadPart = 0; _endCount.QuadPart = 0; QueryPerformanceFrequency(&_frequency); QueryPerformanceCounter(&_startCount); } double Elapsed() {原创 2014-06-19 17:17:30 · 620 阅读 · 0 评论 -
D3DXMatrixDecompose Sample
//z 2015-09-28 23:59:03 L.94 '57 BG57IV3@BYH T1810273247.K.F4146951713[T38,L836,R30,V798]//z D3DXMatrixDecompose Sample 例子 tutorial#include "Math.h"#include void debug(const Matrix &m){ pr原创 2015-09-29 00:01:16 · 706 阅读 · 0 评论
分享