How can i change the public access specifier to internal of window.
<Window x:Class="MyName.MyWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
How to change access specifier from public to internal
internal partial class MyWindow : Window
{ ........................ }
this statement show error ... have conflicting accessibility modifiers. How can i achieve this in WPF?