标题:分享一些题看看大家能不能作出来
只看楼主
wxyljp
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2007-3-23
 问题点数:0 回复次数:0 
分享一些题看看大家能不能作出来

3. What’s the different between ANSI and UNICODE, in Wind32 SDK which function can transform an ANSI string to UNICODE string? (5 ‘) string

4. Please write a function to get a folder size, and return it. (‘ 9)
DWORD GetFolderSize ( LPTSTR lpFolderPath ) (9 ‘);

5. What wrong with this section codes? (2 ‘)
using System;
class A
{
public virtual void F ( )
{
Console.WriteLine ( "A.F" );
}
}

abstract class B:A
{
public abstract override void F ( );
}

6. Which of these string definitions will prevent escape ‘\’ in C#?(2 ‘)(AC)
A. string s = #”n Test string”;
B. string s = “’n Test string”;
C. string s = @”n Test string”;
D. string s = “n Test string”;
7. Please write a program using C# to create a mini-image of a jpg file. (6 ‘)
/// <summary>
/// create a Mini-image.
/// </summary>
/// <param name="strSourceFileName">Source File Name (*.bmp / *. Jpg / *.gif)</param>
/// <param name="strDesFileName">target file name(*.jpg)</param>
/// <param name="intWidth">the width target image </param>
/// <param name="intHeight"> the height target image </param>
public static void MiniImage (
string strSourceFileName,
string strDesFileName,
int intWidth,
int intHeight)
{
// answer:
}

搜索更多相关主题的帖子: 分享 
2007-03-23 21:14



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-126271-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.122318 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved