当前位置: 首页>>代码示例>>C#>>正文


C# com.GetNullableInt方法代码示例

本文整理汇总了C#中com.GetNullableInt方法的典型用法代码示例。如果您正苦于以下问题:C# com.GetNullableInt方法的具体用法?C# com.GetNullableInt怎么用?C# com.GetNullableInt使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com的用法示例。


在下文中一共展示了com.GetNullableInt方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: _fromJSON

 internal  void _fromJSON(com.sybase.afx.json.JsonObject _json)
 {
     __idFormulario = (_json.GetInt("idFormulario"));
     __idPregunta = (_json.GetInt("idPregunta"));
     __valor = (_json.GetNullableDecimal("valor"));
     __operacionNoCumplimiento = (_json.GetNullableInt("operacionNoCumplimiento"));
     __pending = (_json.GetBoolean("pending"));
     __pendingChange = (_json.GetChar("pendingChange"));
     __replayPending = (_json.GetLong("replayPending"));
     __replayFailure = (_json.GetLong("replayFailure"));
     __preguntaFK = (_json.GetNullableLong("preguntaFK"));
     __formulario1FK = (_json.GetNullableLong("formulario1FK"));
     __surrogateKey = (_json.GetLong("surrogateKey"));
     __replayCounter = (_json.GetLong("_rc"));
     __disableSubmit = (_json.GetBoolean("disableSubmit"));
     char op_2 = _json.GetChar("_op");
     _isNew = (op_2 == 'C');
     _isDirty = (op_2 == 'U');
     _isDeleted = (op_2 == 'D');
 }
开发者ID:hihack,项目名称:CRM.Mobile,代码行数:20,代码来源:PreguntaFormulario.cs

示例2: _fromJSON

 internal  void _fromJSON(com.sybase.afx.json.JsonObject _json)
 {
     __valorBoolean = (_json.GetNullableBoolean("valorBoolean"));
     __valorInteger = (_json.GetNullableInt("valorInteger"));
     __valorString = (_json.GetNullableString("valorString"));
     __valorDouble = (_json.GetNullableDouble("valorDouble"));
     __valorDateTime = (_json.GetNullableDateTime("valorDateTime"));
     __idCustomLocalData = (_json.GetString("idCustomLocalData"));
     char op_2 = _json.GetChar("_op");
     _isNew = (op_2 == 'C');
     _isDirty = (op_2 == 'U');
     _isDeleted = (op_2 == 'D');
 }
开发者ID:hihack,项目名称:CRM.Mobile,代码行数:13,代码来源:CustomLocalData.cs

示例3: _fromJSON

 internal  void _fromJSON(com.sybase.afx.json.JsonObject _json)
 {
     __idRepresentanteComercial = (_json.GetInt("idRepresentanteComercial"));
     __usuario = (_json.GetString("usuario"));
     __nombre = (_json.GetString("nombre"));
     __apellido = (_json.GetString("apellido"));
     __idNegocio = (_json.GetNullableInt("idNegocio"));
     __codigoRRCC = (_json.GetNullableString("codigoRRCC"));
     __codigoInterlocutor = (_json.GetString("codigoInterlocutor"));
     __pending = (_json.GetBoolean("pending"));
     __pendingChange = (_json.GetChar("pendingChange"));
     __replayPending = (_json.GetLong("replayPending"));
     __replayFailure = (_json.GetLong("replayFailure"));
     __surrogateKey = (_json.GetLong("surrogateKey"));
     __replayCounter = (_json.GetLong("_rc"));
     __disableSubmit = (_json.GetBoolean("disableSubmit"));
     char op_2 = _json.GetChar("_op");
     _isNew = (op_2 == 'C');
     _isDirty = (op_2 == 'U');
     _isDeleted = (op_2 == 'D');
 }
开发者ID:hihack,项目名称:CRM.Mobile,代码行数:21,代码来源:RepresentanteComercial.cs

示例4: _fromJSON

 internal  void _fromJSON(com.sybase.afx.json.JsonObject _json)
 {
     __idPregunta = (_json.GetInt("idPregunta"));
     __descripcion = (_json.GetString("descripcion"));
     __codigoSAP = (_json.GetString("codigoSAP"));
     __idCategoriaPregunta = (_json.GetNullableInt("idCategoriaPregunta"));
     __pending = (_json.GetBoolean("pending"));
     __pendingChange = (_json.GetChar("pendingChange"));
     __replayPending = (_json.GetLong("replayPending"));
     __replayFailure = (_json.GetLong("replayFailure"));
     __categoriaPreguntaFK = (_json.GetNullableLong("categoriaPreguntaFK"));
     __surrogateKey = (_json.GetLong("surrogateKey"));
     __replayCounter = (_json.GetLong("_rc"));
     __disableSubmit = (_json.GetBoolean("disableSubmit"));
     char op_2 = _json.GetChar("_op");
     _isNew = (op_2 == 'C');
     _isDirty = (op_2 == 'U');
     _isDeleted = (op_2 == 'D');
 }
开发者ID:hihack,项目名称:CRM.Mobile,代码行数:19,代码来源:Pregunta.cs


注:本文中的com.GetNullableInt方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。