error C2393: 'c' : per-appdomain symbol cannot be allocated in segment 'Shared'
#include "stdafx.h"
#include "windows.h"
#include <memory.h>
#include <TCHAR.h>
#pragma once
#pragma data_seg("Shared")
volatile wchar_t content[200]=TEXT("abc");
#pragma data_seg()
#pragma comment(linker, "/Section:Shared,RWS")
報錯:error C2393: 'c' : per-appdomain symbol cannot be allocated in segment 'Shared'
怎么更改/clr ?