Ronnie
Ronnie
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
all of this just to figure out how public classes work 😮‍💨
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
oml it worked
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
oo no errors yet hold on tho
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
ive done that but how do i use the public class in the program now?
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
^assembly#1
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
using System;
using System.Collections.Generic;

namespace CSharp
{
public class Foo
{
public void Method1()
{
Console.WriteLine("This comes from Program 1");
}
}
class Program
{
static void Main(string[] args)
{
Console.WriteLine(" P1 Running.");
}
}
}
using System;
using System.Collections.Generic;

namespace CSharp
{
public class Foo
{
public void Method1()
{
Console.WriteLine("This comes from Program 1");
}
}
class Program
{
static void Main(string[] args)
{
Console.WriteLine(" P1 Running.");
}
}
}
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
im trying to use the public class within the program in assembly 1 in the program in assembly 2
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
by any chance do you know how to do this
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
im struggling to create a refrence from the program in assembly 1 to the other program in assembly 2
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
yeah i just made one now lol
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
public classes can be assessed by different assemblies within the same solution, no?
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
because from what i know you cant use private/ private protected acsess modifiers within a namespace
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
do projects usually need multiple assemblies?
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
oh ok
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
im not sure how to add one in visual studio
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
wait when using public classes from another assembly do you need to use refrences
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
oh
37 replies
CC#
Created by Ronnie on 4/14/2023 in #help
❔ Whats the difference between classes and public classes?
i dont know much about them
37 replies