Click here to Skip to main content
15,887,867 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# 2010 standard output Pin
Dave Kreskowiak24-Aug-12 6:15
mveDave Kreskowiak24-Aug-12 6:15 
QuestionSQL Connection problem in Windows Service asp.net c# Pin
Member 799263524-Aug-12 0:22
Member 799263524-Aug-12 0:22 
AnswerCross post Pin
Pete O'Hanlon24-Aug-12 0:35
mvePete O'Hanlon24-Aug-12 0:35 
AnswerRe: SQL Connection problem in Windows Service asp.net c# Pin
Vijay Selvaraj26-Aug-12 21:56
Vijay Selvaraj26-Aug-12 21:56 
QuestionC# 2010 parse a file Pin
classy_dog23-Aug-12 17:49
classy_dog23-Aug-12 17:49 
AnswerRe: C# 2010 parse a file PinPopular
pramod.hegde23-Aug-12 20:05
professionalpramod.hegde23-Aug-12 20:05 
AnswerRe: C# 2010 parse a file Pin
wizardzz24-Aug-12 9:54
wizardzz24-Aug-12 9:54 
Question[Problem Solved] how to access a class of a file A.cs from other file B.cs Pin
jamesfrj23-Aug-12 13:33
jamesfrj23-Aug-12 13:33 
Hello everyone! I am a new in C# and was trying to access a class from another.

I have created the file Cliente.cs below:

C#
class Cliente
{
	public string nome;
	public int codigo;
}

Afterwards I have created the file TestaCliente.cs with this code:

C#
class TestaCliente
{
	static void Main()
	{
		Cliente c1 = new Cliente();
		c1.nome = "Rafael Consentino";
		c1.codigo = 1;
		
		Cliente c2 = new Cliente();
		c2.nome = "Jonas Hirata";
		c2.codigo = 2;
		
		System.Console.WriteLine(c1.nome);
		System.Console.WriteLine(c1.codigo);
		
		System.Console.WriteLine(c2.nome);
		System.Console.WriteLine(c2.codigo);
	}

}

I have tried to compile the file TestaCliente.cs via command prompt with "csc TestaCliente.cs" and the following error message appears :

Microsoft (R) Visual C# 2010 Compiler version 4.0.30319.1
Copyright (C) Microsoft Corporation. All rights reserved.

TestaCliente.cs(6,4): error CS0246: The type or namespace name 'Cliente' could
not be found (are you missing a using directive or an assembly
reference?)
TestaCliente.cs(6,21): error CS0246: The type or namespace name 'Cliente' could
not be found (are you missing a using directive or an assembly
reference?)
TestaCliente.cs(10,4): error CS0246: The type or namespace name 'Cliente' could
not be found (are you missing a using directive or an assembly
reference?)
TestaCliente.cs(10,21): error CS0246: The type or namespace name 'Cliente' could
not be found (are you missing a using directive or an assembly
reference?)

Obs.:The files are in the same folder.

What am I doing wrong?

Thank you

modified 30-Aug-12 6:32am.

AnswerRe: how to access a class of a file A.cs from other file B.cs Pin
harold aptroot23-Aug-12 14:42
harold aptroot23-Aug-12 14:42 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
jamesfrj30-Aug-12 0:25
jamesfrj30-Aug-12 0:25 
AnswerRe: how to access a class of a file A.cs from other file B.cs Pin
pramod.hegde23-Aug-12 20:12
professionalpramod.hegde23-Aug-12 20:12 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
Pete O'Hanlon23-Aug-12 23:00
mvePete O'Hanlon23-Aug-12 23:00 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
pramod.hegde23-Aug-12 23:04
professionalpramod.hegde23-Aug-12 23:04 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
Pete O'Hanlon23-Aug-12 23:27
mvePete O'Hanlon23-Aug-12 23:27 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
pramod.hegde23-Aug-12 23:51
professionalpramod.hegde23-Aug-12 23:51 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
Pete O'Hanlon24-Aug-12 0:04
mvePete O'Hanlon24-Aug-12 0:04 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
jamesfrj24-Aug-12 4:44
jamesfrj24-Aug-12 4:44 
AnswerRe: how to access a class of a file A.cs from other file B.cs Pin
Bernhard Hiller23-Aug-12 22:51
Bernhard Hiller23-Aug-12 22:51 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
jamesfrj30-Aug-12 0:30
jamesfrj30-Aug-12 0:30 
AnswerRe: how to access a class of a file A.cs from other file B.cs Pin
BobJanova23-Aug-12 22:54
BobJanova23-Aug-12 22:54 
GeneralRe: how to access a class of a file A.cs from other file B.cs Pin
jamesfrj30-Aug-12 0:22
jamesfrj30-Aug-12 0:22 
GeneralHow do I programmatically disable macros in Microsoft Project files using C#? Pin
Kosh201023-Aug-12 10:04
Kosh201023-Aug-12 10:04 
GeneralRe: How do I programmatically disable macros in Microsoft Project files using C#? Pin
BobJanova23-Aug-12 22:50
BobJanova23-Aug-12 22:50 
AnswerRe: How do I programmatically disable macros in Microsoft Project files using C#? Pin
Kosh201024-Aug-12 10:31
Kosh201024-Aug-12 10:31 
QuestionActive Directory Pin
mamoony23-Aug-12 7:49
mamoony23-Aug-12 7:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.