csharp 使用的示例是和作为关键字。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 使用的示例是和作为关键字。相关的知识,希望对你有一定的参考价值。

string str = "I like beer.";

Console.Write("is str a string? ");
Console.WriteLine(str is string);

//  is str a string? True

object[] objArray = new object[] { "hello", 4321, "world", 8, null };

for (int i = 0; i < objArray.Length; ++i)
{
  string strArray = objArray[i] as string;
  Console.Write("Element {0}: ", i);
  if (strArray != null)
  {
    Console.WriteLine("'" + strArray + "'");
  }
  else
  {
    Console.WriteLine("Not a string.");
  }
}

//	Element 0: 'hello'
//	Element 1: Not a string.
//	Element 2: 'world'
//	Element 3: Not a string.
//	Element 4: Not a string.

以上是关于csharp 使用的示例是和作为关键字。的主要内容,如果未能解决你的问题,请参考以下文章

csharp 使用params关键字指定采用可变数量参数的方法参数的示例。

csharp 使用params关键字指定采用可变数量参数的方法参数的示例。

csharp 示例SDL Tridion .Net模板,用于将JSON文件创建为包项,然后将其作为二进制变体发布

csharp 使用while语句的示例。

csharp 使用while语句的示例。

csharp 使用嵌套if语句的示例。