TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
William Thompson
1.2k
155
298.5k
How do I get around Inconsistant accessibilty error in C # ?
Apr 28 2010 7:44 PM
How do I get around Inconsistant accessibilty error in C # ?
I need to pass a pointer to a node in a linked list to a method.
When I do, I get a "Compiler Error CS0051"
Example
The following sample generates CS0051:
Copy Code
// CS0051.cs
public class A
{
// Try making B public since F is public
// B is implicitly private here
class B
{
}
public static void F(B b) // CS0051
{
}
public static void Main()
{
}
}
That is a simple example. The actual program is a bit more complicated. I am actually using a node in a linked list to pass to the method
LinkedListNode<LevelNode> node
The method uses recursion because the node is mart of a huge linked list structure of linked lists that outputs an xml file.
Either I have to find a way to use recursion without using methods or I need to find a way to pass pointers nodes or actual nodes.
Reply
Answers (
0
)
Formating into PIPE delimited file
using html file in asp.net?