using System; using System.Collections.Generic; using System.Linq; using System.Text; namespac
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了using System; using System.Collections.Generic; using System.Linq; using System.Text; namespac相关的知识,希望对你有一定的参考价值。
不知道算不出来 求高手 帮我分析下么? 菜鸟学C# 还没入门 在线等
你想干什么?你只是引用了几个类库!~~。
sing System.Collections.Generic 运用在集合上面的
using System.Linq 这个是linq语法的
using System.Text 普通文本 比如 string等等 参考技术A using System;
using CSharpBook.Chapter01;
using System.Collections;
namespace CSharpBook.Chapter01
class StackTest
static void Main()
Stack s = new Stack();
s.Push(1);
s.Push(10);
s.Push(100);
Console.WriteLine(s.Pop());
Console.WriteLine(s.Pop());
Console.WriteLine(s.Pop());
Console.Read();
我想问一下,为什么这个程序运行不了? 参考技术B 你想问什么?
你是不是代码没复制全啊。。。。标题数字有限制的。
以上是关于using System; using System.Collections.Generic; using System.Linq; using System.Text; namespac的主要内容,如果未能解决你的问题,请参考以下文章