The GPPermissionCollection Class has no Constructor and i don't know how to declare object of it or use it.
GPDomain domain = new GPDomain(sDCName + "." + sDCExtention);
Gpo gpo_background = domain.CreateGpo("August-HCalendarGPO");
GPPermission gp = new GPPermission("Everyone", GPPermissionType.GpoEditDeleteModifySecurity, false) ;
GPPermissionCollection gppc;
gppc.Add(gp); //This Line Has Error
gpo_background.SetSecurityInfo(gppc);
the "gppc.Add(gp);" has error " Use of Unsigned Local Variable" . how to fix this error ? any help will appeciated