Impact of Gen-AI on IT Jobs - Growth Mindset Show
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
iOS
Java
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
3
Reply
How to hide some members of an interface?
Ananth G
8y
816
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
if we will do the Explicit implementation of Interface than we found those function only when there we create the object from that interface if we create the object from class than we didn't get those function.only this is the case in which you can hide interface function partially otherwise there is no way to hide members on an interface.
Sandy
8y
0
if we will do the Explicit implementation of Interface than we found those function only when there we create the object from that interface if we create the object from class than we didn't get those function.only this is the case in which you can hide interface function partially otherwise there is no way to hide members on an interface.
Sandy
8y
0
public class UrClass : ICollection {void ICollection.Clear() { ... } }
Ananth G
8y
0
Message