CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - c 15.4
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
GUI Develop
Windows Kernel
WinSock-NDIS
Driver Develop
ADO-ODBC
GDI-Bitmap
CSharp
.net
Multimedia Develop
Communication
Shell api
ActiveX/DCOM/ATL
IME Develop
ISAPI-IE
Hook api
Screen saver
DirextX
Process-Thread
Console
File Operate
Printing program
Multi Monitor
DNA
Other
Search - c 15.4 - List
[
CSharp
]
C_basic_code_C02-C09
DL : 0
C#入门经典例子源码 本程序包为(02-09) 本程序包为C#初学者使的教程源码 包括以下: 2 一个简单的C#程序 3 变量与表达式 4 流控制 5 更多关于变量 6 函数 7 调试与问题处理 8 (缺)面向对象的编程 9 定义类 10 定义类成员 11 更多关于类 12 事件 13 使用Windows窗体 14 使用Windows窗体高级 15 使用普通对话 16 介绍GDI+ 17 (缺)配置Windows程序 18 访问数据 19 利用 Ado.NET 访问数据 20 文件操作 21 .Net配置 22 特征 23 ASP.NET程序 24 网络服务 包含大量的源码。-classic example of the source code package (02-09) package for the C# so that the beginners guide OSS include the following : 2 a simple C# procedure three variables and control flow expressions 4 5 6 more on the variable function Debugging and 7 deal with the problem 8 (na) Object-Oriented Programming nine class definition defined category of 10 more members of Class 11 12 13 Use Wind incident ows Form 14 Windows Form 15 ordinary senior dialogue on GDI 16 17 (na) Windows configuration process data 19 18 visit to visit Ado.NET use data file operations 21 20 . Net configuration features 23 22 24 ASP.NET procedures network services include a lot of OSS.
Date
: 2008-10-13
Size
: 183.92kb
User
:
liuzengyuan
[
CSharp
]
C_basic_code_C10-C16
DL : 0
本源码程序包为C#初学者所适用 包括(C10-C16)的内容: 2 一个简单的C#程序 3 变量与表达式 4 流控制 5 更多关于变量 6 函数 7 调试与问题处理 8 (缺)面向对象的编程 9 定义类 10 定义类成员 11 更多关于类 12 事件 13 使用Windows窗体 14 使用Windows窗体高级 15 使用普通对话 16 介绍GDI+ 17 (缺)配置Windows程序 18 访问数据 19 利用 Ado.NET 访问数据 20 文件操作 21 .Net配置 22 特征 23 ASP.NET程序 24 网络服务-the source code package for beginners C# application including (C10 - C16) : 2 a simple C# procedure three variables and control flow expressions 4 5 6 more on the variable function Debugging and 7 deal with the problem 8 (na) Object-Oriented Programming nine class definition defined category of 10 more members of Class 11 12 13 Use Wind incident ows Form 14 Windows Form 15 ordinary senior dialogue on GDI 16 17 (na) Windows configuration process data 19 18 visit to visit Ado.NET use data file operations 21 20 . Net configuration features 23 22 24 ASP.NET procedures network services
Date
: 2008-10-13
Size
: 312.59kb
User
:
liuzengyuan
[
CSharp
]
C_basic_code_C18-C24
DL : 0
本源码程序包为C#初学者所适用 包括(C18-C24)的内容: 2 一个简单的C#程序 3 变量与表达式 4 流控制 5 更多关于变量 6 函数 7 调试与问题处理 8 (缺)面向对象的编程 9 定义类 10 定义类成员 11 更多关于类 12 事件 13 使用Windows窗体 14 使用Windows窗体高级 15 使用普通对话 16 介绍GDI+ 17 (缺)配置Windows程序 18 访问数据 19 利用 Ado.NET 访问数据 20 文件操作 21 .Net配置 22 特征 23 ASP.NET程序 24 网络服务-the source code package for beginners C# application including (C18 - C24) : 2 a simple C# procedure three variables and control flow expressions 4 5 6 more on the variable function Debugging and 7 deal with the problem 8 (na) Object-Oriented Programming nine class definition defined category of 10 more members of Class 11 12 13 Use Wind incident ows Form 14 Windows Form 15 ordinary senior dialogue on GDI 16 17 (na) Windows configuration process data 19 18 visit to visit Ado.NET use data file operations 21 20 . Net configuration features 23 22 24 ASP.NET procedures network services
Date
: 2008-10-13
Size
: 235.19kb
User
:
liuzengyuan
[
CSharp
]
统计文件数据
DL : 0
建表: 第一个表:学生表 列名 类型 是否是索引 是否为空 学号 字符串8位 是 否 姓名 字符串10位 否 否 年龄 整型 否 否 地址 字符串50位 否 否 班级 字符串10位 是 否 备注: 班级:2001,2002,2003, 第二张表:成绩表 列名 类型 是否是索引 是否为空 学号 字符串8位 是 否 课程id 字符串10位 是 否 成绩 浮点型 否 否 备注: 唯一索引:学号+课程id 第三张表:课程表 列名 类型 是否是索引 是否为空 课程id 字符串10位 是 否 课程名称 字符串30位 否 否 备注: 唯一索引:课程id 课程名称:高数,大学物理,C语言 写出建表 sql语句 数据导入: 1. 在课程表中导入3条数据,写出sql语句和数据 2. 在学生表中导入15条学生资料,每个班级5条数据,写出sql语句和数据 3. 在成绩表中,每个学生每个课程1条数据,每个学生全选了课程表所有的课程,写出sql语句和数据 sql语句 1. 统计班级为2001的班级的学生个数的sql语句和统计结果 2. 统计选择高数的学生个数的sql语句和统计结果 3. 计算每个学生的总成绩的sql语句和统计结果 4. 选出选择课程为C语言的学生资料和查询结果 5. 写出导出这三张表的数据的sql语句-built table : Table 1 : Table students listed types of whether indexing is whether the school to an empty string, whether the names of eight string 10 No No age Integers address string 50 No No 10 classes string whether Remarks : classes : 2001, 2002, the second table : 8 id 10 id id 10 Fu Series 30 No No Note : The only Index : id courses Course name : high number of university physics, write C-language production table sql statement data into : 1. The courses table into three data and write sql statement and data 2. Students in the table into 15 students, each class 5 data and write sql statement and data 3. The results table, each student each course a data, each elected by the students of the curriculum of all cou
Date
: 2008-10-13
Size
: 1.13kb
User
:
张元
[
CSharp
]
统计文件数据
DL : 0
建表: 第一个表:学生表 列名 类型 是否是索引 是否为空 学号 字符串8位 是 否 姓名 字符串10位 否 否 年龄 整型 否 否 地址 字符串50位 否 否 班级 字符串10位 是 否 备注: 班级:2001,2002,2003, 第二张表:成绩表 列名 类型 是否是索引 是否为空 学号 字符串8位 是 否 课程id 字符串10位 是 否 成绩 浮点型 否 否 备注: 唯一索引:学号+课程id 第三张表:课程表 列名 类型 是否是索引 是否为空 课程id 字符串10位 是 否 课程名称 字符串30位 否 否 备注: 唯一索引:课程id 课程名称:高数,大学物理,C语言 写出建表 sql语句 数据导入: 1. 在课程表中导入3条数据,写出sql语句和数据 2. 在学生表中导入15条学生资料,每个班级5条数据,写出sql语句和数据 3. 在成绩表中,每个学生每个课程1条数据,每个学生全选了课程表所有的课程,写出sql语句和数据 sql语句 1. 统计班级为2001的班级的学生个数的sql语句和统计结果 2. 统计选择高数的学生个数的sql语句和统计结果 3. 计算每个学生的总成绩的sql语句和统计结果 4. 选出选择课程为C语言的学生资料和查询结果 5. 写出导出这三张表的数据的sql语句-built table : Table 1 : Table students listed types of whether indexing is whether the school to an empty string, whether the names of eight string 10 No No age Integers address string 50 No No 10 classes string whether Remarks : classes : 2001, 2002, the second table : 8 id 10 id id 10 Fu Series 30 No No Note : The only Index : id courses Course name : high number of university physics, write C-language production table sql statement data into : 1. The courses table into three data and write sql statement and data 2. Students in the table into 15 students, each class 5 data and write sql statement and data 3. The results table, each student each course a data, each elected by the students of the curriculum of all cou
Date
: 2025-12-19
Size
: 1kb
User
:
张元
[
CSharp
]
C_basic_code_C02-C09
DL : 0
C#入门经典例子源码 本程序包为(02-09) 本程序包为C#初学者使的教程源码 包括以下: 2 一个简单的C#程序 3 变量与表达式 4 流控制 5 更多关于变量 6 函数 7 调试与问题处理 8 (缺)面向对象的编程 9 定义类 10 定义类成员 11 更多关于类 12 事件 13 使用Windows窗体 14 使用Windows窗体高级 15 使用普通对话 16 介绍GDI+ 17 (缺)配置Windows程序 18 访问数据 19 利用 Ado.NET 访问数据 20 文件操作 21 .Net配置 22 特征 23 ASP.NET程序 24 网络服务 包含大量的源码。-classic example of the source code package (02-09) package for the C# so that the beginners guide OSS include the following : 2 a simple C# procedure three variables and control flow expressions 4 5 6 more on the variable function Debugging and 7 deal with the problem 8 (na) Object-Oriented Programming nine class definition defined category of 10 more members of Class 11 12 13 Use Wind incident ows Form 14 Windows Form 15 ordinary senior dialogue on GDI 16 17 (na) Windows configuration process data 19 18 visit to visit Ado.NET use data file operations 21 20 . Net configuration features 23 22 24 ASP.NET procedures network services include a lot of OSS.
Date
: 2025-12-19
Size
: 377kb
User
:
liuzengyuan
[
CSharp
]
C_basic_code_C10-C16
DL : 0
本源码程序包为C#初学者所适用 包括(C10-C16)的内容: 2 一个简单的C#程序 3 变量与表达式 4 流控制 5 更多关于变量 6 函数 7 调试与问题处理 8 (缺)面向对象的编程 9 定义类 10 定义类成员 11 更多关于类 12 事件 13 使用Windows窗体 14 使用Windows窗体高级 15 使用普通对话 16 介绍GDI+ 17 (缺)配置Windows程序 18 访问数据 19 利用 Ado.NET 访问数据 20 文件操作 21 .Net配置 22 特征 23 ASP.NET程序 24 网络服务-the source code package for beginners C# application including (C10- C16) : 2 a simple C# procedure three variables and control flow expressions 4 5 6 more on the variable function Debugging and 7 deal with the problem 8 (na) Object-Oriented Programming nine class definition defined category of 10 more members of Class 11 12 13 Use Wind incident ows Form 14 Windows Form 15 ordinary senior dialogue on GDI 16 17 (na) Windows configuration process data 19 18 visit to visit Ado.NET use data file operations 21 20 . Net configuration features 23 22 24 ASP.NET procedures network services
Date
: 2025-12-19
Size
: 312kb
User
:
liuzengyuan
[
CSharp
]
C_basic_code_C18-C24
DL : 0
本源码程序包为C#初学者所适用 包括(C18-C24)的内容: 2 一个简单的C#程序 3 变量与表达式 4 流控制 5 更多关于变量 6 函数 7 调试与问题处理 8 (缺)面向对象的编程 9 定义类 10 定义类成员 11 更多关于类 12 事件 13 使用Windows窗体 14 使用Windows窗体高级 15 使用普通对话 16 介绍GDI+ 17 (缺)配置Windows程序 18 访问数据 19 利用 Ado.NET 访问数据 20 文件操作 21 .Net配置 22 特征 23 ASP.NET程序 24 网络服务-the source code package for beginners C# application including (C18- C24) : 2 a simple C# procedure three variables and control flow expressions 4 5 6 more on the variable function Debugging and 7 deal with the problem 8 (na) Object-Oriented Programming nine class definition defined category of 10 more members of Class 11 12 13 Use Wind incident ows Form 14 Windows Form 15 ordinary senior dialogue on GDI 16 17 (na) Windows configuration process data 19 18 visit to visit Ado.NET use data file operations 21 20 . Net configuration features 23 22 24 ASP.NET procedures network services
Date
: 2025-12-19
Size
: 432kb
User
:
liuzengyuan
[
CSharp
]
NFramework
DL : 0
关于C#代码生成器的说明: 1. 多数据库的自动支持 2. 事务的自动管理 3. 实体与数据表映射功能(ORMapping) 4. 分页功能的自动支持 5. SQL语句的生成功能 6. 异常处理的支持 7. 系统日志的记录功能 8. 通用的校验类功能 9. 通用的对话框功能 10. 通用的导入导出功能 11. 短信功能的支持 12. 扫描功能的支持 13. 条码功能的支持 14. 通用报表功能的支持 15. AJAX框架的支持 -On the C# Code generator Note: 1. Multi-database support for the automatic 2. Affairs automatic management 3. Entities and data table mapping function (ORMapping) 4. Paging features automatic support 5. SQL statement to generate functional 6. exception handling support 7. the system log record function 8. generic functional checksum 9. common dialog box function 10. GM s import and export functionality 11. messaging support 12. scanning the support of 13. barcodes function to support 14. General statements of support function 15. AJAX framework support
Date
: 2025-12-19
Size
: 982kb
User
:
arn
[
CSharp
]
CSharpExamplesManual
DL : 0
C#2.0 实例自学手册,书本源代码, 电子工业出版社, 第1章 C#入门, 第2章 基本控件使用, 第3章 容器类控件应用, 第4章 菜单、工具栏与状态栏应用, 第5章 对话框应用, 第6章 输入、输出, 第7章 XML应用, 第8章 操作Office文件, 第9章 GDI+绘图, 第10章 进程与线程, 第11章 网络应用, 第12章 数据库应用, 第13章 ASP.NET应用, 第14章 水晶报表应用, 第15章 DotNetBar商业控件应用, 第16章 Microsoft Enterprise Library应用, 第17章 Dundas图表控件应用, 第18章 使用MapXtreme创建地理信息系统, 第19章 制作安装程序, 第20章 图书馆管理信息系统, -C# 2.0 example of self-study manuals, books, source code, Electronics Industry Press, Chapter 1 C# Getting Started Chapter 2 the basic controls use Chapter 3 container class control applications Chapter 4 menus, toolbars, and status bar application of Chapter 5 Dialogue box with Chapter 6, the input and output Chapter 7 XML applications Chapter 8 Operation Office file Chapter 9 GDI+ Graphics Chapter 10 process and thread Chapter 11 Network Applications Chapter 12 Database Applications Chapter 13 ASP.NET application of section Chapter 14 Crystal Reports application of section 15 of the controls DotNetBar business applications Chapter 16 Microsoft Enterprise Library application of Chapter 17 Dundas chart control application of Chapter 18 to use MapXtreme to create Geographic Information System Chapter 19 Fabrication and installation procedures for Chapter 20 Library Management Information System
Date
: 2025-12-19
Size
: 3.16mb
User
:
wsadfg
[
CSharp
]
main
DL : 0
(1)查看功能:选择此功能时,列出下列三类选择。 A办公类B个人类C商务类,当选中某类时,显示出此类所有数据中的姓名和电话号码 (2)增加功能:能录入新数据(一个结点包括:姓名、电话号码、分类(可选项有:A办公类B个人类C商务类)、电子邮件)。例如 杨春13589664454商务类chuny@126.com 当录入了重复的姓名和电话号码时,则提示数据录入重复并取消录入;当通信录中超过15条信息时,存储空间已满,不能再录入新数据;录入的新数据能按递增的顺序自动进行条目编号。 (3)拔号功能:能显示出通信录中所有人的姓名,当选中某个姓名时,屏幕上模拟打 字机的效果依次显示出此人的电话号码中的各个数字。 (4)修改功能:选中某个人的姓名时,可对此人的相应数据进行修改 (5) 删除功能:选中某个人的姓名时,可对此人的相应数据进行删除,并自动调整后续条目的编号 -cellphone
Date
: 2025-12-19
Size
: 1kb
User
:
万涛
[
CSharp
]
Cquanjie
DL : 0
《C# 语法全解》,都是分好的文档,适合大家交流学习。 文档列表: C# 命名空间9.doc C# 委托15.doc C#变量5.doc C#表达式7.doc C#不安全代码18.doc C#程序结构和数据类型1.doc C#词法结构2.doc C#基本概念3.doc C#接口13.doc C#结构11.doc C#类10.doc C#类型4.doc C#枚举14.doc C#属性17.doc C#数组12.doc C#文档注释19.doc C#异常16.doc C#语法20.doc C#语句8.doc C#转换6.doc-" C# syntax of the whole solution," are points good documentation, for learning to share. Documents list: C# namespace 9.doc C# delegate 15.doc C# variable 5.doc C# expression 7.doc C# unsafe code 18.doc C# program structure and data types 1.doc C# lexical structure 2.doc C# Basic Concepts 3.doc C# Interface 13.doc C# structure 11.doc C# class 10.doc C# type 4.doc C# enumeration 14.doc C# properties 17.doc C# array 12.doc C# Documentation Comments 19.doc C# exception 16.doc C# syntax 20.doc C# statement 8.doc C# conversion 6.doc
Date
: 2025-12-19
Size
: 636kb
User
:
...
[
CSharp
]
15.CSharp-design
DL : 0
C#入门的经典书籍,收到很多读者的好评,本人亲自使用过,感觉效果也是很好的,现在共享下-C# Introduction to the classic books, received the praise of many readers, I have personally used and feel the effect is good, now share the next
Date
: 2025-12-19
Size
: 5.07mb
User
:
谢开平
[
CSharp
]
CSharp
DL : 0
适用于C#初学者的几个小程序,可以加深对这门语言的理解 包括有以下内容: 1.C#获取当前程序所在的文件夹.rar 2.C#界面皮肤(带例子).rar 3.C#如何使用托盘控件的实例源码.rar 4.C#文本加密解密算法示例源代码.rar 5.C#在开机时自动启动程序.rar 6.C#自定义皮肤.rar 7.CS聊天程序.rar 8.WPF模拟Windows+7气象源码.rar 9.玻璃按钮.rar 10.导出Excel格式.rar 11.导出excel列表.rar 12.动态创建控件并获取值.rar 13.读Eexcel文件.rar 14.读入写出excel.rar 15.根据cpu序列号、磁盘序列号设计软件注册程序.rar 16.滑块改变透明度,C#透明窗体实例.rar 17.加解密文件.rar 18.进度条.rar 19.可拖动控件.rar 20.漂亮Vista风格按钮示例.rar 21.启动其他程序.rar 22.上传下载文件.rar 23.生成文本为Word格式.rar 24.实现程序互斥运行 只能运行一个.rar 25.实现的Excel 2007表格读写实例.rar 26.线程启动窗口form.rar 27.研究生信息管理系统.rar 28.扬声器发声.rar 29.拖放文件超级列表框.rar-Several small programs in C# beginners can deepen the understanding of this language Include the following: 1.C# Get the current program where folder. Rar 2.C# interface skin (with examples). Rar 3.C# Examples of how to use the tray control source. Rar 4.C# text encryption algorithm example source code. Rar 5.C# program start automatically at boot time. Rar 6.C# custom skin. Rar 7.CS chat program. Rar 8.WPF analog Windows 7 meteorological source. Rar Nine glass buttons. Rar 10 Export Excel format. Rar 11 export excel list. Rar 12. Dynamically create controls and get the value. Rar 13 Read Eexcel file. Rar 14 reads write excel.rar 15 according to the registration process cpu serial number, disk serial number design software. Rar 16. Slider to change transparency, C# transparent form instance. Rar 17. Encrypt and decrypt files. Rar 18. Progress bar. Rar 19 draggable controls. Rar 20 beautiful Vista style buttons example. Rar 21 start other programs. Rar 22. Upload
Date
: 2025-12-19
Size
: 13.77mb
User
:
吕温
[
CSharp
]
Csharp
DL : 0
C#基础概念二十五问 1.静态成员和非静态成员的区别? 2.const 和 static readonly 区别? 3.extern 是什么意思? 4.abstract 是什么意思? 5.internal 修饰符起什么作用? 6.sealed 修饰符是干什么的? 7.override 和 overload 的区别? 8.什么是索引指示器? 9.new 修饰符是起什么作用? 10.this 关键字的含义? 11.可以使用抽象函数重写基类中的虚函数吗? 12.密封类可以有虚函数吗? 13.什么是属性访问器? 14.abstract 可以和 virtual 一起使用吗?可以和 override 一起使用吗? 15.接口可以包含哪些成员? 16.类和结构的区别? 17.接口的多继承会带来哪些问题? 18.抽象类和接口的区别? 19.别名指示符是什么? 20.如何手工释放资源? 21.P/Invoke是什么? 22.StringBuilder 和 String 的区别? 23.explicit 和 implicit 的含义? 24.params 有什么用? 25.什么是反射? -C# Basics twenty-five ask a Static members and non-static member difference? 2.const and static readonly difference? 3.extern What does it mean? 4.abstract What does it mean? 5.internal modifiers what role? 6.sealed modifier is doing? 7.override and overload the difference? 8 What is indexer? 9.new modifier is what role? 10.this keyword meaning? 11 You can use the abstract base class function overrides the virtual function do? 12 sealed class can have a virtual function? 13 What is the property accessor? 14.abstract can be used in conjunction with virtual do? You can use it together and override? 15 The interface can contain what members? 16 the difference between classes and structures? 17 interface, which will bring the problem of multiple inheritance? 18 the difference between abstract classes and interfaces? 19. Alias indicator is it? 20 How to manually release resources? 21.P/Invoke What? 22.StringBuilder and String difference? 23.explicit and implicit meanings? 24.p
Date
: 2025-12-19
Size
: 1.01mb
User
:
stallion
[
CSharp
]
3015_EX01
DL : 0
Exercise 1: Programming Environment and Basic Input/Output 1. Write a program that prints “This is my first program!” on the screen. (a) Save this program onto your own disk with the name of e2-1a (b) Run this program without opening Turbo C (c) Modify this program to print “This is my second program!”, then save it as e2-1b. Please do not overwrite the first program. 2. Write a program that prints the number 1 to 4 on the same line. Write the program using the following methods: (a) Using four “printf” statements. (b) Using one “printf” statement with no conversion specifier (i.e. no ‘ ’). (c) Using one “printf” statement with four conversion specifiers 3.(a) Write a program that calculates and displays the number of minutes in 15 days. (b) Write a program that calculates and displays how many hours 180 minutes equal to. (c) (Optional) How about 174 minutes? -Exercise 1: Programming Environment and Basic Input/Output 1. Write a program that prints “This is my first program!” on the screen. (a) Save this program onto your own disk with the name of e2-1a (b) Run this program without opening Turbo C (c) Modify this program to print “This is my second program!”, then save it as e2-1b. Please do not overwrite the first program. 2. Write a program that prints the number 1 to 4 on the same line. Write the program using the following methods: (a) Using four “printf” statements. (b) Using one “printf” statement with no conversion specifier (i.e. no ‘ ’). (c) Using one “printf” statement with four conversion specifiers 3.(a) Write a program that calculates and displays the number of minutes in 15 days. (b) Write a program that calculates and displays how many hours 180 minutes equal to. (c) (Optional) How about 174 minutes?
Date
: 2025-12-19
Size
: 21kb
User
:
王思翰
[
CSharp
]
15
DL : 0
QMVC 是高性能 MVC 框架,Q是Quick的缩写,MVC分别为Model、Controller、View的缩写。QMVC使用C#程序语言开发,采用Microsoft .NET framework 4.5类库,是用于B/S结构项目开发。(QMVC is a high-performance MVC framework. Q is the abbreviation of Quick, MVC is the abbreviation of Model, Controller and View. QMVC is developed by C# programming language, and adopts Microsoft.NET framework 4.5 class library, which is used for B/S structure project development.)
Date
: 2025-12-19
Size
: 3.03mb
User
:
4y5ht
[
CSharp
]
C#全自动多线程上位机源码基于OPC的上位机源码,WF8063_for_dx16_2022
DL : 0
C#全自动多线程上位机源码基于OPC的上位机源码,XY曲线,压力-位移曲线,曲线质量判断,与PLC通讯 C#全自动多线程上位机源码编程 0, 纯源代码。 1, 替代传统plc搭载的触摸屏。 2, 工控屏幕一体机直接和plc通信。 3, 功能强大,多级页签。 4, 可以自由设定串口或以太网通信。 5, 主页。 6, 报警页。 7, 手动调试页。 8, 参数设定页。 9, 历史查询页。 10,系统设定页。 11, 赠送所有控件。 12,使用的西门子Plc。 13,注册opcdaauto.dll组件,用于使用opc。 15,安装kepserverEx5。 16,可以链接其他数据库。
Date
: 2025-09-01
Size
: 29.35mb
User
:
42191091********
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.