本文介绍了字符串格式不同于..的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好



我试图过滤数据表,我正在使用它并且它有效:

 DataRow [] rowsTarget = dt3 .Select( string  .Format(  CodigoKitDC = {0 },row [  Items])); 

但现在我需要剩下的其他数据,



如何使用不同的字符串格式,如下所示:

  string  .Format(  CodigoKitDC ! =  {0},行[ 项目])) ; 

但它不是Works.help请



我尝试过:



 string.Format(CodigoKitDC !=  {0},row [Items])); 
 string.Format(CodigoKitDC <>  {0},row [Items])); 
解决方案




Hello

Im trying to filter a datatable, i´m using this and it works:

DataRow[] rowsTarget = dt3.Select(string.Format("CodigoKitDC={0}", row["Items"]));

but now i need to have the rest of the data,

how can i make a string format with the different, something like this:

string.Format("CodigoKitDC != {0}", row["Items"]));

but it not Works.help please

What I have tried:

string.Format("CodigoKitDC != {0}", row["Items"]));
string.Format("CodigoKitDC <> {0}", row["Items"]));
解决方案




这篇关于字符串格式不同于..的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-02 14:05