C# String Intern(String str)The C# Intern() method is used to retrieve reference to the specified String. It goes to intern pool (memory area) to search for a string equal to the specified String. If such a string exists, its reference in the intern pool is returned. If the string does not exist, a reference to specified String is added to the intern pool, then that reference is returned. SignatureThe signature of intern method is given below: Parametersstr: it is a parameter of type string. C# String Intern() Method ExampleOutput: Hello C# Hello C#
Next TopicC# String IsInterned()
|