will09 Posted November 6, 2005 at 01:39 PM Report #6395 Posted November 6, 2005 at 01:39 PM Precisso de saber se alguem saber fazer clear screen aki no C# i por cores e essas cenas???? tipo: __________________ Pascal uses crt; clrscr(); __________________ C #include <conio.h> clrscr(); __________________ PEACE ;) cumps
QuickFire Posted November 6, 2005 at 02:31 PM Report #6400 Posted November 6, 2005 at 02:31 PM ClearMyConsole.Clear() tenta isto 😄 btw não sei puto de C# 😉 Foi depois de uma pesquisa de google e encontrei esta page: http://www.csharpfriends.com/Forums/ShowPost.aspx?PostID=6621 tá lá para o meio de um code
will09 Posted November 17, 2005 at 11:29 PM Author Report #6880 Posted November 17, 2005 at 11:29 PM Não havia para o .net SDK 1.1 max agora com o novo .net SDK 2.0 já existe uma cena para limpar o ecrã: inda n consegui foi por a funcionar... =( using System; class clearscreen { static void Main() { Console.WriteLine("HEllo World"); Console.Clear(); Console.WriteLine("Limpei o Ecra"); Console.ReadLine(); } } dá erro , diz que o clear n existe na Console! ai tenhu tudo instalado .net SDK 2.0 e neps! :cry: PEACE ;)
_Jaymz_ Posted November 22, 2005 at 10:34 PM Report #7171 Posted November 22, 2005 at 10:34 PM Que IDE estás a usar? Em Visual Studio 2005 funciona na boa... E em VS 2003 tenho quase a certeza que também... Dá uma olhadela aqui: http://support.microsoft.com/default.aspx?scid=kb;en-us;319257 se bem que é um canhão para um mosquito... Em VS 2005: using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.WriteLine("Teste 1"); Console.Clear(); Console.WriteLine("Teste 2"); Console.ReadLine(); } } }
David Pintassilgo Posted November 22, 2005 at 10:40 PM Report #7173 Posted November 22, 2005 at 10:40 PM Bem vindo ao forum p@p _jaymz_! 😄 cool stuffs to check. http://blog.zxcoders.com//
Andre Posted January 7, 2006 at 09:55 AM Report #11097 Posted January 7, 2006 at 09:55 AM eu tenho o framework 2.0 e o snippet compiler 2.0 e consigo 😄 tambem tem cenas como por a apitar e mudar as cores tb 😁
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now