针对中文,演示Markdown的各种语法
大标题一般显示工程名,类似html的<h1>
你只要在标题下面跟上=====即可
| #include <mono/jit/jit.h> | |
| #include <mono/metadata/assembly.h> | |
| #pragma comment(lib, "mono-2.0.lib") | |
| int main(int argc, char* argv[]) | |
| { | |
| mono_set_dirs("C:\\Program Files (x86)\\Mono\\lib", | |
| "C:\\Program Files (x86)\\Mono\\etc"); | |
| MonoDomain *domain; |
| 3>pangocairo-win32font.obj : error LNK2019: unresolved external symbol __imp__cairo_scaled_font_extents referenced in function _pango_cairo_win32_font_create_base_metrics_for_context | |
| 3>pangocairo-font.obj : error LNK2001: unresolved external symbol __imp__cairo_scaled_font_extents | |
| 3>pangocairo-win32font.obj : error LNK2019: unresolved external symbol __imp__cairo_matrix_init_identity referenced in function __pango_cairo_win32_font_new | |
| 3>pangocairo-font.obj : error LNK2001: unresolved external symbol __imp__cairo_matrix_init_identity | |
| 3>pangocairo-win32font.obj : error LNK2019: unresolved external symbol __imp__cairo_matrix_scale referenced in function __pango_cairo_win32_font_new | |
| 3>pangocairo-win32font.obj : error LNK2019: unresolved external symbol __imp__cairo_win32_font_face_create_for_logfontw referenced in function _pango_cairo_win32_font_create_font_face | |
| 3>pangocairo-win32font.obj : error LNK2019: unresolved external symbol __imp__cairo_win32_scaled_font_select_font referenced in function _pango_cairo_wi |
| using System; | |
| using System.Runtime.InteropServices; | |
| using SFML; | |
| using SFML.Graphics; | |
| using SFML.Window; | |
| using Tao.OpenGl; | |
| namespace opengl | |
| { | |
| static class Program |
| //By Hapax from http://en.sfml-dev.org/forums/index.php?topic=14391.msg101187#msg101187 | |
| #include <SFML/Graphics.hpp> | |
| int main() | |
| { | |
| sf::RenderWindow window(sf::VideoMode(800, 600), "", sf::Style::None); | |
| sf::Vector2i grabbedOffset; | |
| bool grabbedWindow = false; | |
| while (window.isOpen()) | |
| { | |
| sf::Event event; |
| using System; | |
| using SFML.System; | |
| using SFML.Window; | |
| namespace DragableWindow | |
| { | |
| class DragableWindow : Window | |
| { | |
| private Vector2i grabbedOffset; | |
| private bool grabbedWindow; |
| tmesh = $Mesh0 | |
| num_verts = $Mesh0.numverts | |
| num_faces = $Mesh0.numfaces | |
| format "%,%\n" num_verts num_faces | |
| units.MetricType = #meters | |
| for v = 1 to num_verts do | |
| ( | |
| vert = getVert tmesh v | |
| if(abs vert.x < 0.001f) then vert.x = 0f | |
| if(abs vert.y < 0.001f) then vert.y = 0f |
| using System; | |
| public class Dog | |
| { | |
| static public void Type() | |
| { | |
| Console.WriteLine("a Dog!"); | |
| } | |
| public void Bark() | |
| { |
| using SixLabors.ImageSharp; | |
| using SixLabors.ImageSharp.PixelFormats; | |
| using SixLabors.ImageSharp.Primitives; | |
| using SixLabors.ImageSharp.Processing; | |
| using System; | |
| using Xunit; | |
| namespace ImageSharp.Extension | |
| { | |
| /// <summary> |
| /// <reference types="rx" /> | |
| class Program | |
| { | |
| static main(): void | |
| { | |
| console.log("1"); | |
| Rx.Observable.range(1, 10).subscribe(x => console.log(x)); | |
| console.log("2"); | |
| } |