in c# are methods private by default?
Posted
by Eli Perpinyal
on Stack Overflow
See other posts from Stack Overflow
or by Eli Perpinyal
Published on 2010-05-21T11:58:24Z
Indexed on
2010/05/21
12:00 UTC
Read the original article
Hit count: 231
c#
If I have a method that does not specify its Accessibility Level will it be Private by default?
void Item_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) { throw new NotImplementedException(); }
Is the above method private?
© Stack Overflow or respective owner