பாதுகாக்கப்பட்ட உள் அணுகல் மாற்றி(Protected Internal Access Modifier)

 

பாதுகாக்கப்பட்ட உள் என்பது பாதுகாக்கப்பட்ட மற்றும் அகத்தின் ஒரே அணுகல் நிலைகள்.அதே சபையில் எங்கு வேண்டுமானாலும் அணுகலாம், இது மற்றொரு சபையில் பெறப்பட்ட வகுப்பினுள் அணுகப்படலாம்.

உதாரணம்

using System;
namespace ConsoleApplication1
{
    class InternalAccess
    {
        protected internal string stu= "This 
string is protected internal";
        protected internal void dis(string 
stu)
        {
            Console.WriteLine("This fun is protected internal : " + 
stu);
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            InternalAccess inter = new InternalAccess();
            Console.WriteLine(
inter .stu); // Accessing internal variable
            
inter .dis("Hi !!"); // Accessing internal function
            Console.ReadKey();
        }
    }
}

வெளியீடு

This variable is  protected internal

This function is protected internal : Hi !!

Ragam

I want to be a good person

Post a Comment (0)
Previous Post Next Post