我有一个C#的编译错误
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
using System.Security.Principal;
using System.Security.Permissions;
using System.Runtime.ConstrainedExecution;
using System.Runtime.InteropServices;
using Microsoft.Win32.SafeHandles;
[DllImport("advapi32.dll", SetLastError = true,CharSet = CharSet.Unicode)]
public static extern bool ***LogonUser***(string lpszUsername, string lpszDomain, string lpszPassword,
int dwLogonType, int dwLogonProvider, out ***SafeTokenHandle*** phToken);
Run Code Online (Sandbox Code Playgroud)
在*符号(LogonUser的和SafeTokenHandle)字.由于类型未知,我的C#编译器无法编译.我开发了visual studio 2012,windows 64,framework 4.0.
请帮忙.
在编写此查询时需要您的帮助.
Field 1
========
Hello
Man
Lady
Run Code Online (Sandbox Code Playgroud)
我需要结果:
F1 F2 F3
=================================
Hello Null Null
Man Null Null
Lady Null Null
Hello Man Null
Hello Lady Null
Man Lady Null
Hello Man Lady
==================================
Run Code Online (Sandbox Code Playgroud)