是否有可能找到PDFsharp库的良好文档?
我在Google上搜索过,但我没有找到任何参考文档.
我不知道该怎么XGraphics.RotateAtTransform和XGraphics.TranslateTransform工作.
我有一个部分类的两部分:
public partial class Class1 : AnotherClass
{
int id;
}
public partial class Class1
{
public void func()
{
//here i need to access the id variable defined in the other part
id = 1; //this instruction raise an error "The name 'id' does not exists in the current context"
}
}
Run Code Online (Sandbox Code Playgroud)
我该如何访问该变量?