下面这个函数中的"in ({0})"表示的是什么意思呢?
public void In(string[] args) {
     string condition = queryCondition == null ? fieldName + " in ({0})" : " and " + fieldName + " in ({0})"; }

解决方案 »

  1.   

    是属于sql语句。
    查阅SQL的书。
      

  2.   

    表示占位符,如String.Format("{0}","");
      

  3.   

    string str = "你的名字";
    Console.WriteLine("hello {0}",str);你运行一下就知道了 。
      

  4.   

    C#中的占位符
    跟java中的?一个道理
      

  5.   

    string form 后面是占位符 {0},“ni hao ”
      

  6.   

    好想JAVA 中的占位符了 .net中的好不一样 
      

  7.   

    string str="Hi!";
    应该是占位符,Console.WriteLine("{0} This is C# Program !",str);