Delphi Data Type to C# Data Type
| Delphi DataType | C# datatype |
| ansistring | string |
| boolean | bool |
| byte | byte |
| char | char |
| comp | double |
| currency | decimal |
| double | double |
| extended | double |
| int64 | long |
| int32 | int |
| int16 | short |
| integer | int |
| longint | int |
| longword | uint |
| olevariant | object |
| pchar | string |
| real | double |
| real48 | double |
| shortint | sbyte |
| single | float |
| smallint | short |
| string | string |
| variant | object |
| widechar | char |
| wchar | char |
| uchar | char |
| widestring | string |
| word | ushort |
| textfile | System.IO.FileInfo |
| tdate | System.DateTime |
| tdatetime | System.DateTime |
| tfiletime | System.DateTime |
| hresult | long |
| pointer | object |
| ansichar | char |
| file | System.IO.File |
| plongint | int |
| pinteger | int |
| pcardinal | uint |
| pword | double |
| pdword | double |
| psmallint | short |
| pbyte | byte |
| pshortint | short |
| pint64 | long |
| plongword | uint |
| psingle | float |
| pdouble | double |
| pdate | System.DateTime |
| pdispatch | object |
| ppdispatch | object |
| perror | object |
| pwordbool | bool |
| punknown | object |
| ppunknown | object |
| ppwidechar | string |
| ppchar | string |
| ppansichar | string |
| pansichar | string |
| pextended | double |
| pcomp | double |
| pcurrency | double |
| pvariant | object |
| polevariant | object |
| ppointer | object |
| pboolean | bool |
| pdatetime | System.DateTime |
| thandle | long |
| tresult | long |
| cardinal | uint |
| tbytearray | byte[] |
| twordarray | int[] |
| dword | int |
| pstring | string |
| pwidestring | string |
| tsystemtime | System.DateTime |
| bytebool | bool |
| longbool | bool |
| wordbool | bool |
| hmodule | long |
| tlargeinteger | int |
| plargeinteger | int |
| pwidechar | string |
| toleenum | long |
| pbytearray | byte[] |
| pwordarray | int[] |
| pansistring | string |
| ptextbuf | string |
| shortstring | string |
| utf8string | string |
| text | System.IO.Stream |
| textfile | System.IO.Stream |
| textinput | System.IO.TextReader |
| textoutput | System.IO.TextWriter |
| ttypeinfo | System.Type |
| tbytes | sbyte[] |
Delphi Data Type to C# Data Type的更多相关文章
- Consider defining a bean of type 'org.springframework.data.redis.connection.RedisConnectionFactory' in your configuration
Description: Parameter 0 of method redisTemplate in com.liaojie.cloud.auth.server.config.redis.Redis ...
- SpringBoot- springboot集成Redis出现报错:No qualifying bean of type 'org.springframework.data.redis.connection.RedisConnectionFactory'
Springboot将accessToke写入Redisk 缓存,springboot集成Redis出现报错 No qualifying bean of type 'org.springframewo ...
- SQL Server发布订阅报错:The conversion of a datetime data type to smalldatetime data type resulted in an out of range value.
执行SQL Server发布订阅时,报错如下信息: The conversion of a datetime data type to smalldatetime data type resulted ...
- Field redisTemplate in xxxxxx required a bean of type 'org.springframework.data.redis.core.RedisTemplate' that could not be found.
*************************** APPLICATION FAILED TO START *************************** Description: Fie ...
- Parameter 0 of method redisTemplate in org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration required a bean of type 'org.springframework.data.redis.connection.RedisConnectionFactor
Error starting ApplicationContext. To display the conditions report re-run your application with 'de ...
- bulk insert data into database with table type .net
1. Create Table type in Sqlserver2008. CREATE TYPE dbo.WordTable as table ( [WordText] [nchar]() NUL ...
- 无法为具有固定名称“MySql.Data.MySqlClient”的 ADO.NET 提供程序加载在应用程序配置文件中注册的实体框架提供程序类型“MySql.Data.MySqlClient.MySqlProviderServices,MySql.Data.Entity.EF6”
"System.InvalidOperationException"类型的未经处理的异常在 mscorlib.dll 中发生 其他信息: 无法为具有固定名称"MySql. ...
- 统计分析中Type I Error与Type II Error的区别
统计分析中Type I Error与Type II Error的区别 在统计分析中,经常提到Type I Error和Type II Error.他们的基本概念是什么?有什么区别? 下面的表格显示 b ...
- 混合 Data Warehouse 和 Big Data 倉庫的新架構
(讀書筆記)許多公司,儘管想導入 Big Data,仍必須繼續用 Data Warehouse 來管理結構化的營運數據.系統記錄.而 Big Data 的出現,為 Data Warehouse 提供了 ...
- 以Excel 作为Data Source,将data导入db
将Excel作为数据源,将数据导入db,是SSIS的一个简单的应用,下图是示例Excel,数据列是code和name 第一部分,Excel中的数据类型是数值类型 1,使用SSDT创建一个package ...
随机推荐
- Effective java笔记5--通用程序设计
一.将局部变量的作用域最小化 本条目与前面(使类和成员的可访问能力最小化)本质上是类似的.将局部变量的作用域最小化,可以增加代码的可读性和可维护性,并降低出错的可能性. 使一个局部变量的作用 ...
- Golang 绘图技术(image/draw包介绍)
image/draw 包仅仅定义了一个操作:通过可选的蒙版图(mask image),把一个原始图片绘制到目标图片上,这个操作是出奇的灵活,可以优雅和高效的执行很多常见的图像处理任务. 1 ...
- angularjs $swipe调用方法
angularjs 的$swipe,用法: $swipe.bind(angular.element(document),{ start: function(pos) { }, move: functi ...
- CDB和PDB基本管理
CDB和PDB基本管理 这篇文章主要介绍CDB和PDB的基本管理,资料来源oracle官方. 基本概念: Multitenant Environment:多租户环境 CDB(Container Dat ...
- nmon基础
nmon是分析 AIX 和 Linux 性能的免费工具 最简单的安装方式(Ubuntu apt源) sudo apt-get install nmon 在terminal下打开nmon 敲CMD,出现 ...
- Dzz任务板初版完成笔记-仿trello私有部署的一款轻量团队任务协作工具。
刚完成了第一个版本Dzz任务板的设计开发,记录下设计思路和完成情况. Dzz任务板是DzzOffice中的团队协作套件中的一款应用,它需要安装在DzzOffice中使用. 主界面中需要能够快速简单的创 ...
- OpenCV安装要点
OpenCV安装要点1.设置系统和用户环境变量PATH指向opencv\build\x86\vc10\bin或者opencv\build\x64\vc10\bin2.新建用户环境变量OpenCV指向o ...
- CSS学习进度备忘
书签:“CSS 高级”跳过:另外跳过的内容有待跟进 __________________ 学习资源:W3School. _________________ 跳过的内容:1.“CSS id 选择器”的“ ...
- 在Jenkins中使用Git Plugin访问Https代码库失败的问题
最近需要在Jenkins上配置一个Job,SCM源是http://git.opendaylight.org/gerrit/p/integration.git 于是使用Jenkins的Git Plugi ...
- ubuntu下Qt cannot find -lGL错误的解决方法 (转载)
在ubuntu下使用Qt 编译时候遇上了cannot find -lGL错误,使用命令 sudo apt-get install libqt4-dev或者sudo apt-get install li ...